Page updates appear in Preview but not live version?

I have made some changes to a blog page and excluded some categories. However, whenever I view the blog online the excluded posts still appear. But when I got to the blog page and click 'preview' the excluded categories do not appear, as I wanted.

I have cleared my browsers cache but this does nothing. There are no cache plugins in use.

Does anyone know what's going on?

Test Site: http://crankit.com.au/~dentalwe/blog/

function genesis_do_loop() {

    if ( is_page_template( 'page_blog.php' ) ) {
        $include = genesis_get_option( 'blog_cat' );
        $exclude = genesis_get_option( 'blog_cat_exclude' ) ? explode( ',', str_replace( ' ', '', genesis_get_option( 'blog_cat_exclude' ) ) ) : '';
        $paged   = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;

        //* Easter Egg
        $query_args = wp_parse_args(
            genesis_get_custom_field( 'query_args' ),
            array(
                'cat'              = $include,
                'category__not_in' = $exclude,
                'showposts'        = genesis_get_option( 'blog_cat_num' ),
                'paged'            = $paged,
            )
        );

        genesis_custom_loop( $query_args );
    } else {
        genesis_standard_loop();
    }

}

Topic blog blog-page cache posts Wordpress

Category Web


If I understand you well, button 'Preview Changes' displays changes made on post/page while you 'Update' page/post (save changes).

But, 'View Page' displays page as is with latest 'Update' version. So, if you did not updated page, then you'll not see what you get when you go to 'Preview Changes'.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.