Skip to content

Instantly share code, notes, and snippets.

@abelsaad
Created July 6, 2021 07:00
Show Gist options
  • Save abelsaad/c0393426107b466486243daaba452ee1 to your computer and use it in GitHub Desktop.
Save abelsaad/c0393426107b466486243daaba452ee1 to your computer and use it in GitHub Desktop.
Simple loop
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<?php
// الكود الخاص بالتدوينة
?>
<?php endwhile; ?>
<?php else : ?>
<p>المعذرة, ما تبحث عنه غير متوفر هنا</p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment