我想知道这里是否有人可以帮助我my site使用Bueno主题(Wordpress CMS)。我尝试在主题支持论坛上提问,但我没有得到任何回复。
我遇到的主要问题是主题会自动在首页上显示摘录而不是完整帖子。我想要的情况是让它显示整个帖子,除非我在编辑器中使用'more'标签。但目前它会自行打破帖子并忽略更多标签。
我自己尝试过寻找解决方案,但主题代码似乎没有<*?php the_excerpt(); ?>
我可以更改为<*?php the_content(); ?>
,这是我到处看到的建议。< / p>
答案 0 :(得分:0)
似乎是这样:在主题选项下 - &gt;常规设置将发布内容设置为完整内容。
或者,如果没有,请打开index.php
并更改
<?php if ( $woo_options['woo_post_content'] == "content" ) {
the_content('[...]'); } else { the_excerpt(); ?><?php } ?>
to
<?php the_content('[...]'); ?>
请参阅http://support.woothemes.com/hc/communities/public/questions/201460727-Excerpt-Full-Post-Problem