php 清理WordPress标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 清理WordPress标题相关的知识,希望对你有一定的参考价值。


remove_action( 'wp_head', 'rsd_link' );
remove_action( 'wp_head', 'wlwmanifest_link' );
remove_action( 'wp_head', 'wp_generator' );
remove_action( 'wp_head', 'start_post_rel_link' );
remove_action( 'wp_head', 'index_rel_link' );
remove_action( 'wp_head', 'adjacent_posts_rel_link' );
remove_action( 'wp_head', 'wp_shortlink_wp_head' );
remove_action( 'admin_print_styles', 'print_emoji_styles' );
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
remove_action( 'wp_print_styles', 'print_emoji_styles' );
remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' );
remove_filter( 'the_content_feed', 'wp_staticize_emoji' );
remove_filter( 'comment_text_rss', 'wp_staticize_emoji' );

以上是关于php 清理WordPress标题的主要内容,如果未能解决你的问题,请参考以下文章

php WordPress管理栏清理

PHP Wordpress:清理仪表板元框

PHP 清理WordPress 3.0+头

php Wordpress 4.7.x头部清理脚本

PHP 清理WordPress wp_head()

使用 Wordpress,有人可以告诉我清理输入的最佳方法吗?