How to List Uncategorized Posts only?
-
I want to list only the posted that are categorized as “Uncategorized” in my top navigation links with my singlePost.php file, how would I do this?
Single Post php code:
<div id=”copy”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”navigation”>
<div class=”alignleft”>
<?php previous_post_link(‘« %link’) ?></div>
<div class=”alignright”>
<?php next_post_link(‘%link »’) ?></div>
</div>
<div class=”post”>
<h2>
<?php the_title(); ?>
</h2>
<div class=”post-date”>
<?php the_time(‘F jS, Y’) ?></div>
<?php the_content(); ?></div><!– /post –>
Example:
https://www.superiorsoundco.com/wordpress/2010/01/04/new-post-from-editor/
- The topic ‘How to List Uncategorized Posts only?’ is closed to new replies.