未显示“阅读更多”链接

时间:2013-01-03 作者:Clinton Green

我正在使用Sideshow theme 这是我作为捆绑包的一部分收到的,因此我没有从Themezilla本身获得任何支持。我正在尝试插入"Read more" 插入时的链接"More" 标签我试着按照Wordpress Codex using the_content and the_excerpt 但还没能破解它。我使用它的网站是onespectator.com

从主题功能。php

/*-----------------------------------------------------------------------------------*/
/*  Change Default Excerpt Length
/*-----------------------------------------------------------------------------------*/

function tz_excerpt_length($length) {
return 55; }
add_filter(\'excerpt_length\', \'tz_excerpt_length\');

/*-----------------------------------------------------------------------------------*/
/*  Configure Excerpt String
/*-----------------------------------------------------------------------------------*/

function tz_excerpt_more($excerpt) {
return str_replace(\'[...]\', \'...\', $excerpt); }
add_filter(\'wp_trim_excerpt\', \'tz_excerpt_more\');

1 个回复
最合适的回答,由SO网友:Clinton Green 整理而成

我找到了答案<?php the_content(\'\'); ?> 并将其更改为<?php the_content(\'Read More\'); ?> 这些都可以在每个post类型的php文件中找到。eg包括/视频。php。

结束

相关推荐