Wordpress使用标题加载the_content()

时间:2017-07-06 17:10:40

标签: php html wordpress function

我有一个博客页面,然后是每篇博文的个人帖子页。

在我的博客页面上,它会显示所有帖子 的标题:

<div class="entry-content">
    <?php
        the_content();

        wp_link_pages( array(
        'before' => '<div class="page-links">' . __( 'Pages:', 'twentyseventeen' ),
        'after'  => '</div>',
        ) );
    ?>
</div>

但是在个人博客帖子页面上,它只显示图片和博客文字,而不是标题:

<div class="entry-content">
<?php
    /* translators: %s: Name of current post */
    the_content();


    wp_link_pages( array(
        'before'      => '<div class="page-links">' . __( 'Pages:', 'twentyseventeen' ),
        'after'       => '</div>',
        'link_before' => '<span class="page-number">',
        'link_after'  => '</span>',
    ) );

?>
</div>

如何调用the_content(),但它的回复方式不同?我还需要在个人博客帖子页面上显示帖子的标题。

1 个答案:

答案 0 :(得分:0)

我认为您需要在帖子页面添加the_title()

来自文档:https://codex.wordpress.org/Function_Reference/the_title