0

我想在帖子页面上进行一些更改。我不想显示我想查看完整帖子的摘录 - 例如包括图片和 youtube 视频。另外,我想禁用帖子条目的链接。由于我使用的是“滚动到页面 id”,因此导航不再起作用。我尝试了插件高级摘录选项但没有成功。我还找到了这个答案https://stackoverflow.com/a/28632374/2689362但我不知道如何使其适应我的二十七个主题。

谢谢你的帮助。

4

1 回答 1

1
To show full text on wordperss blog post

Path: template-parts/post/content

**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();
}
?>
于 2018-03-12T08:48:13.327 回答