Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

‫ ﺍﻟﺪﺭﺱ ﺍﻟﺜﺎﻧﻲ‬:‫ – ﺗﻌﺮﻳﺐ ﻣﻠﻔﺎﺕ ﻭﻭﺭﺩﺑﺮﺱ‬index.

php
Index.php ‫ﻣﺜﺎﻝ ﻣُﺨﺘﻠﻖ ﳌﻠﻒ‬
<?php get_header(); ?>
<div class="nav">
<ul>
<?php wp_list_categories('title_li=&orderby=name&include=2,3,4,5,6'); ?>
</ul>
</div>
<div id="content">
<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>

<div <?php post_class() ?> id="post-<?php the_ID(); ?>">


<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent
Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<span class="meta"><?php the_time('F jS, Y') ?> </span>

<div class="entry">
<?php the_content('Read the rest of this entry &raquo;'); ?>
</div>

<p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php


edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments &#187;', '1 Comment
&#187;', '% Comments &#187;'); ?></p>
</div>

<?php endwhile; ?>

<div class="navigation">
<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?
></div>
</div>

<?php else : ?>

<h2 class="center">Not Found</h2>


<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>

<?php endif; ?>

</div>

<?php get_sidebar(); ?>


<?php get_footer(); ?>

wordpressinarabic.com - ‫©ﻭﻭﺭﺩﺑﺮﺱ ﺑﺎﻟﻌﺮﺑﻲ‬


‫ ﺍﻟﺪﺭﺱ ﺍﻟﺜﺎﻧﻲ‬:‫ – ﺗﻌﺮﻳﺐ ﻣﻠﻔﺎﺕ ﻭﻭﺭﺩﺑﺮﺱ‬index.php
:‫ﻭﺑﻌﺪ ﺍﻟﺘﻌﺮﻳﺐ ﻳﺼﺒﺢ ﻫﺬﺍ ﺍﳌﻠﻒ ﻛﺎﻟﺘﺎﻟﻲ‬

<?php get_header(); ?>


<div class="nav">
<ul>
<?php wp_list_categories('title_li=&orderby=name&include=2,3,4,5,6'); ?>
</ul>
</div>
<div id="content">
<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>

<div <?php post_class() ?> id="post-<?php the_ID(); ?>">


<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="‫?< وﺻﻠﺔ داﺋﻤﺔ‬php
the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<span class="meta"> <?php the_time('j F Y') ?> </span>

<div class="entry">
<?php the_content)'‫& إﻗﺮأ اﳌﺰﻳﺪ‬raquo;'(; ?>
</div>

<p class="postmetadata"> ‫ﻓﻲ ﻳُﺼﻨﻒ‬: <?php the_category)', '( ?> |<?php


edit_post_link('‫?< |>? ;)'ﲢﺮﻳﺮ‬php comments_popup_link('0 ‫'ﺗﻌﻠﻴﻖ‬, '1 ‫'ﺗﻌﻠﻴﻖ‬, '% ‫>? ;)'ﺗﻌﻠﻴﻘﺎﺕ‬
</p>
</div>

<?php endwhile; ?>

<div class="navigation">
<div class="alignleft"><?php previous_posts_link(' ‫& ﺍﻟﺘﺪﻭﻳﻨﺎﺕ ﺍﻟﺴﺎﻳﻘﺔ‬raquo;'); ?></div>
<div class="alignright"><?php next_posts_link)' ‫& اﻟﺘﺪوﻳﻨﺎت ااﻟﺘﺎﻟﻴﺔ‬raquo;'(; ?></div>
</div>

<?php else : ?>


<h2 class="center‫<>"ﻏﻴﺮ ﻣﻮﺟﻮد‬/h2>
<p class="center‫<>"ﻋﻔﻮاً! إن ﻣﺎ ﺗﺒﺨﺚ ﻋﻨﻪ ﻏﻴﺮ ﻣﻮﺟﻮد‬/p>
<?php get_search_form(); ?>

<?php endif; ?>

</div>

<?php get_sidebar(); ?>


<?php get_footer(); ?>

wordpressinarabic.com - ‫©ﻭﻭﺭﺩﺑﺮﺱ ﺑﺎﻟﻌﺮﺑﻲ‬

You might also like