在Coraline主题/ Wordpress中注释掉页面标题

时间:2014-03-20 19:19:43

标签: php wordpress

有人可以建议在Coraline主题中注释掉页面标题的位置吗?我尝试了不同的东西,但它不起作用。这是我的page.php

    <div id="content-container">
        <div id="content" role="main">

        <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>

            <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
                <?php if ( is_front_page() ) { ?>
                    <h2 class="entry-title"><?php the_title(); ?></h2>
                <?php } else { ?> 


                    <h1 class="entry-title"><?php the_title(); ?></h1> 


                <?php } ?>

                <div class="entry-content">
                    <?php the_content(); ?>
                    <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'coraline' ), 'after' => '</div>' ) ); ?>
                    <?php edit_post_link( __( 'Edit', 'coraline' ), '<span class="edit-link">', '</span>' ); ?>
                </div> <!-- .entry-content 
            </div> <!-- #post-## -->

            <?php comments_template( '', true ); ?>

        <?php endwhile; ?>

        </div><!-- #content -->
    </div><!-- #content-container -->

1 个答案:

答案 0 :(得分:0)

我认为这就是这一行:

<h1 class="entry-title"><?php the_title(); ?></h1>

要注释掉,请替换为:

<!--<h1 class="entry-title"><?php the_title(); ?></h1>-->

在管理面板中创建新页面时,您也可以将标题框留空。