1 |
define('WP_POST_REVISIONS',false); |
1 |
add_filter('pre_option_link_manager_enabled','__return_true'); |
remove_action(‘wp_head’, ‘feed_links_extra’, 3);
remove_action(‘wp_head’, ‘rsd_link’);
remove_action(‘wp_head’, ‘wlwmanifest_link’);
remove_action(‘wp_head’, ‘index_rel_link’);
remove_action(‘wp_head’, ‘start_post_rel_link’, 10, 0);
remove_action(‘wp_head’, ‘wp_generator’);
1 2 3 4 5 6 7 |
remove_action( 'admin_print_scripts' , 'print_emoji_detection_script'); remove_action( 'admin_print_styles' , 'print_emoji_styles'); remove_action( 'wp_head' , 'print_emoji_detection_script', 7); remove_action( 'wp_print_styles' , 'print_emoji_styles'); remove_filter( 'the_content_feed' , 'wp_staticize_emoji'); remove_filter( 'comment_text_rss' , 'wp_staticize_emoji'); remove_filter( 'wp_mail' , 'wp_staticize_emoji_for_email'); |
1 2 3 4 |
add_filter('show_admin_bar', 'hide_admin_bar'); function hide_admin_bar($flag) { return false; } |
1 2 3 4 5 6 7 8 9 |
add_action('pre_ping', '_noself_ping'); function _noself_ping(&$links) { $home = get_option('home'); foreach ($links as $l => $link) { if (0 === strpos($link, $home)) { unset($links[$l]); } } } |