wordpress修改近期文章列表标题长度

Home / Article MrLee 2015-11-13 4459

比较简单,在wordpress/wp-includes下面找到default-widgets.php文件,然后定位到代码
1
class WP_Widget_Recent_Posts extends WP_Widget

将li标签下面代码改成下面即可。
1
2
3
4
5
6
7
8
9
10
<li>
    <a href="<?php the_permalink(); ?>">
    <!--?php $showTitle = get_the_title();
    if (mb_strlen($showTitle) --> 21) {
        $showTitle = mb_substr($showTitle, 0, 21, 'utf-8');
    } echo $showTitle;?></a>
<!--?php if ( $show_date ) : ?-->
    <span class="post-date"><!--?php echo get_the_date(); ?--></span>
<!--?php endif; ?-->
</li>

 

本文链接:https://it72.com:4443/6900.htm

推荐阅读
最新回复 (0)
返回