Add to wordpress.org/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/functions.php: **************************************************** add_action( 'init', 'untagged_RSS' ); function untagged_RSS(){ add_feed( 'untagged', 'untagged_RSS_feed' ); } function untagged_RSS_feed() { get_template_part( 'rss', 'untagged' ); } **************************************************** Create wordpress.org/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/rss-untagged.php **************************************************** 'ids' ) ); $args = array( 'post_type' => 'post',` 'tax_query' => array( array( 'taxonomy' => 'post_tag', 'field' => 'id', 'terms' => $tags, 'operator' => 'NOT IN' ) ) ); $query = new WP_Query( $args ); header( 'Content-Type: '.feed_content_type( 'rss-http' ).'; charset='.get_option( 'blog_charset' ), true); echo ''; ?> > <?php bloginfo_rss( 'name' ); ?> - Feed have_posts()) : $query->the_post(); ?> <?php the_title_rss(); ?> ]]> ]]> ****************************************************