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?
最简单的方法可能是在以下位置添加一些 CSS:
#excerpt {
height: 150px;
}
这将做到你所想的。您可以通过插件或主题轻松使用挂钩将其注入仅限管理员的部分。还有一些插件可以让您添加自定义 css。
在您的 functions.php 或任何插件文件中,粘贴以下代码
function admin_excerpt()
{
echo "<style>";
echo "textarea#excerpt { height: 27em; }";
echo "</style>";
}
add_action('admin_head', 'admin_excerpt');
上面的代码将增加摘录文本区域的行数或高度。因此,现在它将显示一个大框,而不是一小框摘录。
此功能将允许您设置摘录中可以包含的单词数。只需将其放入主题的 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');