Instead, I now separate them using a simple if statement at the same time that I exclude microblog posts from the main feed:
if( !is_archive() ) {
set_query_var('category__not_in', array(81));
// Exclude from all but archive pages
}
Having a plugin installed just to achieve that is wasteful and an overhead I can do without, but it also makes me realise how much has changed since I first added the microblog.
Comments
if( !is_feed() && !is_archive() ) as it was overriding the statement to exclude microblog posts from the main feed. Silly mistake.Out of 842 total posts 546 could be seen. Not what I was after but it did mean that I could easily compare the number of posts before and after the blog reboot in March last year.
I'll need to add a !is_admin() condition to the logic.
Test Audio 1
This is a quick test of a post with an audio enclosure that's not a normal microcast post. The enclosure doesn't say anything interesting but you can listen if you like ?
I'm looking to be more flexible with what I do with audio so exploring different ways of posting.
@colinwalker no problem. It's not like you're Apple and have the resources not to resend hundreds of posts every time you update your feed!