wordpress - 增加摘录的大小

时间:2012-12-27 15:13:02

标签: php wordpress

我想在wordpress添加新帖子页面中增加摘录的textarea大小。我不想在文件中进行更改。

是否有任何方法可以增加摘录的textarea的大小?

3 个答案:

答案 0 :(得分:2)

最简单的方法可能只是添加一些CSS:

#excerpt {
    height: 150px;
}

这就是你正在考虑的事情。您可以通过插件或主题轻松地使用钩子将此注入到仅管理部分。还有一些插件可以让你添加自定义css。

答案 1 :(得分:1)

此功能允许您设置摘录中可以包含的单词数。只需将其放入主题的functions.php文件中,并将“20”替换为您要使用的数字。在结束?>标记之前将其放在文件的最后。

//custom excerpt length
function aw_custom_excerpt_length( $length ) {
return 20; // set the number to the amount of words you want to appear in the excerpt
}
add_filter( 'excerpt_length', 'aw_custom_excerpt_length');

答案 2 :(得分:1)

在您的functions.php或任何插件文件中,粘贴以下代码

function admin_excerpt()
{
    echo "<style>";
    echo "textarea#excerpt { height: 27em; }";
    echo "</style>";
}
add_action('admin_head', 'admin_excerpt');

以上代码将增加摘录的textarea的行数或高度。所以,现在它将展示一个大盒子,而不是一小盒摘录。