我是个新手,如果我的术语不正确,请提前道歉。我已经购买了一个主题(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\');