stop 404 page articles appering

Posted in: Newspaper
Post count: 11

hi, how to stop articles appearing on 404 page.

Post count: 1043

Find the 404.php file inside the Newspaper theme and remove this code (preferably in a child theme not to lose the changes with the theme update).

<h4 class="block-title"><span><?php echo __td('OUR LATEST POSTS', TD_THEME_NAME)?></span></h4> <?php

                $args = array(
                    'post_type'=> 'post',
                    'showposts' => 6
                );
                query_posts($args);

                $td_loop_block_module = td_util::get_option('tds_404_page_layout');
                //$td_loop_block_module

                locate_template('loop.php', true);
                //get_template_part('category', 'slider');
                wp_reset_query();

                ?>
Post count: 11

Thanks @epickenyan

Post count: 1043

You are welcome.

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.