Hi,

In order to find and display the untagged posts in blog, you need to use this code:

<?php query_posts(‘orderby=title&order=asc&showposts=-1′); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php
$tag = get_the_tags();
if (!$tag) { //Theses posts have no tags
the_title();
}
endwhile;
endif; ?>

Add this code in any template where you want to display untagged posts of the blog.

That’s it!

Thanks,

Shane G.

Popularity: 1%

Related posts:
  1. Code To Display Scheduled Posts In Wordpress Blog Hi, This is the code to display scheduled posts in...
  2. Code To Display Recent Posts from Specific Categories In Wordpress Blog Hi, In many cases we do require to display the...
  3. How To Convert Category Pages To Post Titles In Wordpress Blog Hi, Many wordpress users wants to display Category Pages instead...
  4. How To Make Search Result Unlimited In Wordpress Blog Hi, Sometimes wordpress users want make the search results unlimited....
  5. How To Add Author Page in Wordpress Blog Hi, In order to create an author page you will...

Leave a Reply

You must be logged in to post a comment.