Advertisement
imranmodel32

blog page query

Aug 26th, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. Post Query in index.php
  2. =====================================
  3.  
  4. <?php if(have_posts()) : ?>
  5. <?php while (have_posts()) : the_post(); ?>
  6.  
  7. <!-- Your Post Query here -->
  8.  
  9. <?php endwhile; ?>
  10. <?php endif; ?>
  11.  
  12.  
  13. Pagination in index.php
  14. =====================================
  15.  
  16. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts') ); ?></div><div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>') ); ?></div>
  17.  
  18.  
  19. Post Information Query in index.php
  20. =====================================
  21.  
  22. <?php the_title(); ?> = পোস্টের শিরোনাম আনার জন্য
  23. <?php the_permalink(); ?> = পোস্টের লিংক আনার জন্য
  24. <?php the_time('M d, Y') ?> = পোস্টের সময় আনার জন্য
  25. <?php the_excerpt(); ?> = পোস্টের সারাংশ আনার জন্য
  26. <?php the_content(); ?> = পোস্টের পুরো অংশ আনার জন্য
  27. <?php the_category(', '); ?> = পোস্টের বিভাগ আনার জন্য
  28. <?php comments_popup_link('No Comment', '1 Comment', '% Comments'); ?> = পোস্টে কমেন্ট সংখ্যা ও তার লিংক আনার জন্য
  29. <?php the_category(' '); ?>
  30. <?php the_tags(' ');?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement