HTML to WordPress
How to General Post Query in WordPress
Welcome to all in “How to General Post Query in WordPress” tune. Today I am going to simply describe about WordPress post query. This an important thing in WordPress but very easy. <?php if(have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <!-- Your Post Query HTML goes here --> <?php endwhile; ?> <?php endif;… Read More
WordPress Development
General Post Query in WordPress
Post query is a common and important part in WordPress. If you will do a post query , every post gets same style from this query. The common post query code given below: <?php if(have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> // Content goes here <?php endwhile; ?> <?php endif; ?> On the… Read More