各位大神,推荐一个wordpress"阅读全文"的插件吧
阅读全文不需要插件,直接在循环中添加
<strong><a href="<?php the_permalink() ?>" title="<?php printf('%s',the_title_attribute('echo=0') ) ?>">;阅读全文>></a></strong>
就可以了
或者也可以在function.php文件中编写替换函数,替换掉默认摘要
function excerpt_read_more_link($output) {
global $post;
$output = excerptformat(mb_substr($output,0, 300));
return $output;
}
add_filter('the_excerpt', 'excerpt_read_more_link');
在上文中找到return $output; 然后添加修饰
转载请注明出处51数据库 » wordpress书库插件
下吧笑掉