Guest User

Untitled

a guest
Feb 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  2.  
  3.  
  4. the_title() - выводит заголовок
  5. the_time() - выводит время публикации записи
  6. the_category() - выводит категорию записи
  7.  
  8.  
  9. <?php endwhile; else: ?>
  10. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> - выводит текст если нет записей
  11. <?php endif; ?>
Add Comment
Please, Sign In to add comment