Disable the Comments, Recent Post, Archives, section in WordPress

There is a section in WordPress at the bottom of the entry of a post.

This section looks like this Image

Read More

Well, I want to remove that section from every post, and can’t find a WordPress configuration that does that.

Related posts

Leave a Reply

1 comment

  1. Here is the code:

    under /wp-content/themes/your_theme/sidebar.php

    You will find a div with the next code:

       <div id="secondary" class="widget-area" role="complementary">
                <?php dynamic_sidebar( 'sidebar-1' ); ?>
        </div>
    

    Just comment (or remove ) the line like this:

        <div id="secondary" class="widget-area" role="complementary">
                <?php //dynamic_sidebar( 'sidebar-1' ); ?>
        </div>
    

    Also, there are Plugins that disable comments for all Post or Pages. Like this one: http://wordpress.org/plugins/disable-comments/