Wordpress - Hueman主题 - 如何在主页中增加文章内容?

时间:2015-01-15 06:44:15

标签: wordpress wordpress-theming

我使用的是hueman主题。在主页上,它显示了大约10篇文章,如何增加每篇文章的内容大小。

我尝试了外观>>主题选项>>博客>>摘录长度但它不起作用!!!

我不知道我哪里出错了。

1 个答案:

答案 0 :(得分:0)

我认为,只有一种防弹方式,用wordpress过滤器改变长度:

function your_excerpt_length( $length ) {
    return 200;
}
add_filter( 'excerpt_length', 'your_excerpt_length' );

其中200 - 摘录的长度