Wordpress Twenty Seventeen - 显示完整帖子不摘录

时间:2018-03-11 13:12:59

标签: wordpress twentyseventeen

我想在帖子页面上做一些更改。我不想显示我希望看到完整帖子的摘录 - 例如包括图像和youtube视频。 另外,我想禁用帖子条目的链接。由于我使用“滚动到页面ID”导航不再起作用。 我尝试了插件Advanced Excerpt Options但没有成功。 我也找到了这个答案https://stackoverflow.com/a/28632374/2689362,但我不知道如何使它适应我的二十七主题。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

To show full text on wordperss blog post

路径:模板 - 部分/帖子/内容

**find below code:**

<?php
        /* translators: %s: Name of current post */
        the_content( sprintf(
            __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentyseventeen' ),
            get_the_title()
        ) );

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

**and replace with:**

<?php
$show_full_content = get_post_meta($post->ID, 'show_full_content', true);

if ($show_full_content == 'no') {
        the_excerpt();
} else {

 the_content();
}
?>