How does one enable automatic tagging for custom post types when the bulb is not lit in the auto terms menu? What needs to be added for a custom post type to be part of automatic tagging?
How does one enable automatic tagging for custom post types when the bulb is not lit in the auto terms menu? What needs to be added for a custom post type to be part of automatic tagging?
<?php query_posts($query_string .'&posts_per_page=100&post_type=any') ;
while ( have_posts() ) : the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
// Reset Query
wp_reset_query();
?>This topic has been closed to new replies.