我如何显示一篇完整的帖子,而不仅仅是摘录?

时间:2013-02-08 作者:user27211

我是个新手,如果我的术语不正确,请提前道歉。我已经购买了一个主题(WP SmartStart),我希望博客中的帖子能够完全显示出来,而不仅仅是摘录。我阅读了之前的问题和答案,并找到了可以交流的评论the_excerpt 具有the_content.

我搜索了所有php文件,但唯一相关的似乎是函数。php文件。我会将其粘贴到下面,但我不知道如何更改它,以便显示完整的帖子,因为我还没有学习php。

如果您能提供任何帮助,我们将不胜感激。以下是我认为需要更改的代码:

if ( !function_exists(\'ss_framework_excerpt_length\') ) {

// Sets the post excerpt length to 40 words (or 20 words if post carousel)
function ss_framework_excerpt_length( $length ) {

    if( isset( $GLOBALS[\'post-carousel\'] ) )
        return 20;

    return 40;

}
add_filter(\'excerpt_length\', \'ss_framework_excerpt_length\');

}

if ( !function_exists(\'ss_framework_auto_excerpt_more\') ) {

// Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis
function ss_framework_auto_excerpt_more( $more ) {

    return \'…\';

}
add_filter(\'excerpt_more\', \'ss_framework_auto_excerpt_more\');

1 个回复
SO网友:AndrettiMilas

这是我的建议。。。虽然我通常会给您一个使用\\u内容的建议,但我不知道这段代码如何应用到主题的其余部分。因此,一个快速、简单且肮脏的修复方法是将长度更改为一个高得离谱的数字。如果您不喜欢这个答案,我相信很快就会有人使用\\u内容给出答案。在此之前,请尝试以下操作:

// Sets the post excerpt length to 40 words (or 20 words if post carousel)
function ss_framework_excerpt_length( $length ) {

    if( isset( $GLOBALS[\'post-carousel\'] ) )
        return 12000;

    return 12000;

}
add_filter(\'excerpt_length\', \'ss_framework_excerpt_length\');

结束

相关推荐

如何在Single.php中显示来自定制分类的定制字段?

我知道下面的mysql查询生成了我希望在single中响应的确切结果。php:SELECT meta_value FROM `wp_taxonomymeta` WHERE `taxonomy_id` =565 AND `meta_key` LIKE \'baseurl\' 首先,我需要能够使用$wpdb输出该结果,无论我尝试什么,我都无法让它工作。我的最后一次尝试:<?php global $wpdb; $toc = $wpdb->get_ro