如何禁用博客和网站上的摘录 时间:2019-04-15 作者:user165075 我想禁止在中的博客和整个网站中显示摘录functions.php 文件这不管用add_filter( \'excerpt_more\', \'__return_empty_string\' ); 2 个回复 SO网友:leymannx 你需要打电话remove_post_type_support() 在您的functions.php 就像这样:/** * Remove unwanted features. */ add_action(\'init\', \'my_theme_remove_post_type_support\'); function my_theme_remove_post_type_support() { remove_post_type_support(\'post\', \'excerpt\'); } SO网友:Tanmay Patel Put this code in functions.php file and check it.function disable_excerpt_more( $more ) { return \'\'; } add_filter( \'excerpt_more\', \'disable_excerpt_more\' ); 文章导航