It seems to have worked, thanks to a tip from @ciudadanob I’ve rearranged my blog. Status posts are now kept off the home page. Status posts, although they have titles in WordPress do not have in RSS. So the content of the posts flows through to micro.blog.

4 thoughts on “It seems to have worked, thanks to a tip from @ciudadanob I

  1. @Chris

    function jjmicroblog_titlelessrss($content) {
    $postformat=get_post_format();
    if ($postformat==\'status\'){
    $content=\"\";
    }
    return $content;
    }

    add_filter(\'the_title_rss\', \'jjmicroblog_titlelessrss\');

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.