Proper Code to Display Posts from Specific Categories
-
https://www.ahy4life.com/update_20121008/
The above is a testing site. I need to add additional categories but cannot seem to fathom precisely the proper code for a specific section on each page. An rtfm has been unsuccessful.
For example, if I wish to display the title and then the content from a post from ‘events’, which is ID=4, in the code below:‘
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?><h2><center><?php the_title(); ?></center></h2>
<!– Display the Post’s Content in a div box. –>
<?php the_content(); ?>
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>
<?php endif; ?>
‘what is the proper code?
- The topic ‘Proper Code to Display Posts from Specific Categories’ is closed to new replies.