Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 1

‫ الدرس الرابع‬:‫ تعريب ملفات ووردبريس‬- sidebar.

php

sidebar.php ‫مختلق لملف‬


ُ ‫مثال‬

<div id="sidebar">

<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar(1) ) : ?>

<h2> ‫< بحث‬/h2>


<?php include (TEMPLATEPATH . '/searchform.php'); ?>

<h2>‫<التصنيفات‬/h2>
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>

<h2>‫<الرشيف‬/h2>
<ul>
<?php wp_get_archives('title_li='); ?>
</ul>

<h2>‫<روابط‬/h2>
<ul>
<?php wp_list_bookmarks('categorize=0&title_li='); ?>
</ul>

<h2>‫<منوعات‬/h2>
<ul>
<?php wp_meta(); ?>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
</ul>

<?php endif; ?>

</div>

© www.wordpressinarabic.com - ‫ووردبرس بالعربي‬

You might also like