admin
WordPress
WordPress文章编辑没有摘要解决办法
要在WordPress中设置文章摘要,即使文章编辑页面没有原生的摘要字段,您可以通过在主题的functions.php文件中添加一些代码来实现。以下是一个方法:在主题的functions.php文件中添加以下代码:// 自动截取文章内容作为摘要 function custom_excerpt_length( $length ) { return 20; // 你想要的摘要长度 } add_filter( 'excerpt_length', 'custom_excerpt_length' ); function custom_excerpt_more( $more ) { ...
最近评论