0

I want to increase the textarea size of excerpt in wordpress add new post page. I don't want to make changes in files.

Is there any method to increase the size of textarea of excerpt?

4

3 回答 3

2

最简单的方法可能是在以下位置添加一些 CSS:

#excerpt {
    height: 150px;
}

这将做到你所想的。您可以通过插件或主题轻松使用挂钩将其注入仅限管理员的部分。还有一些插件可以让您添加自定义 css。

于 2012-12-28T12:51:34.917 回答
1

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

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

上面的代码将增加摘录文本区域的行数或高度。因此,现在它将显示一个大框,而不是一小框摘录。

于 2013-01-07T07:00:07.407 回答
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');
于 2012-12-27T19:03:32.877 回答