为什么在我的主题静态页面上都显示了这些信息?

时间:2014-07-13 作者:AndreaNobili

我正在处理WordPress主题,我对页面\\帖子布局有一些问题。

例如,如果您选择此处:http://lnx.asper-eritrea.com/lassociazione/

这是一个静态页面,显示一些文本(这是可以的),但为什么在文本下可以显示评论,在它下面可以显示日历、类别、存档和元数据?

我该怎么做才能不让这些东西显示在我的页面中?我必须修改页面模板的代码吗?

这是我的密码page.php 文件:

<?php
/**
 * The Template for displaying a single page
 */

get_header();
?>

<!-- Contenuti (griglia) -->
<div class="container">
<!-- Lead presentazione -->
<section id="presentazione">
<div class="row">
<div class="col-sm-12">
<h1 class="text-center"><small>Associazione per la Tutela dei Diritti Umani del Popolo Eritreo</small></h1>
<p class="lead text-center">
Association in Defense of the Human Rights of the Eritrean People
</p>
</div><!-- /.col-sm-12 -->
</div><!-- /.row -->
</section><!-- /section presentazione -->

<div id="main-content" class="main-content">

<?php
if (is_front_page() && twentyfourteen_has_featured_posts()) {
    // Include the featured content template.
    get_template_part(\'featured-content\');
}
?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">

<?php
// Start the Loop.
while (have_posts()) : the_post();

    // Include the page content template.
    get_template_part(\'content\', \'page\');

    // If comments are open or we have at least one comment, load up the comment template.
    if (comments_open() || get_comments_number()) {
        comments_template();
    }
endwhile;
?>

</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(\'content\'); ?>
</div><!-- #main-content -->

<?php get_footer(); ?>

2 个回复
最合适的回答,由SO网友:Domain 整理而成

在链接中,所有内容(如日历、类别、存档等)都来自侧边栏小部件,很可能是在您的page.php 布局

类似于:

<?php get_sidebar( \'content\' ); ?>

您需要从页面中删除这种侧栏代码。php文件不显示该信息。

SO网友:karpstrucking

我猜你还没有定义page.php 模板,以便使用index.php 它包括一个带有小部件和注释表单的侧栏。

编辑:

查看更新问题中的代码,可以删除以下内容:

// If comments are open or we have at least one comment, load up the comment template.
if (comments_open() || get_comments_number()) {
     comments_template();
}
以及:

<?php get_sidebar(\'content\'); ?>

结束

相关推荐

Add wp-link-pages to post

我正在尝试添加wp-link-pages 功能到我的帖子中,我将图片拆分为多个页面。我已经有了next和prev按钮,其功能是用javascript编写的。如果我想从图1跳到图14,我觉得很难。所以我不知道如何实现这个wordpress,因为我是一个傻瓜。下面是我用来将帖子图像拆分为多个页面的代码。<?php global $post; if (has_post_thumbnail( $