• Just recently I noticed that blog posts were no longer visible on my blog page and by process of elimination found that it was the Simply Exclude plugin that was causing this. None of the posts have any Simply Exclude categories checked so I can’t understand why this has suddenly happened. It wasn’t a problem when I first installed the plugin.

    https://www.ads-software.com/plugins/simply-exclude/

Viewing 6 replies - 1 through 6 (of 6 total)
  • I have the same exact issue!

    Plugin Author Paul Menard

    (@pmenard)

    @dc2010 & @jsnyder27,

    Thanks for the post. And thanks for providing exactly no information about your WordPress site, your theme or even you settings for Simply Exclude. I can’t begin to help you without something to look into.

    I have the same issue. It was working a month ago, I guess with the previous version. Now, whenever I activate the plugin, the posts disappear from the blog page.
    I’m using the latest version of WordPress and the theme I’m using is Salient. My website is sestek.com .

    Any more information you need?

    Just installed this plugin but when I add a post excluding it from the homepage the other posts disapper.

    site url – https://jimlunsford.com
    Running ‘Billie’
    Theme – 2015
    Settings – Default other than selecting a category to exclude

    I found a solution. Use the Code Snippet plugin and enter the following code:

    function exclude_category( $query ) {
        if ( $query->is_home() && $query->is_main_query() ) {
            $query->set( 'cat', '3' );
        }
    }
    add_action( 'pre_get_posts', 'exclude_category' );

    Replace 3 with the category ID you want to exclude.

    Not only will you be able to achieve this you can also use the plugin to enter more code snippets.

    I guess this way will work, too. Thanks Jim, I’ll try your method!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Simply Exclude plugin preventing blog posts from displaying on Blog page’ is closed to new replies.