Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Titoratus/ec77e2dd498a1a3fa186090d99de98fa to your computer and use it in GitHub Desktop.
Save Titoratus/ec77e2dd498a1a3fa186090d99de98fa to your computer and use it in GitHub Desktop.
Удаление ненужных тегов из wp_head
remove_action( 'wp_head', 'wp_resource_hints', 1);
remove_action( 'wp_head', 'feed_links',2);
remove_action( 'wp_head', 'feed_links_extra',3);
remove_action( 'wp_head', 'rsd_link');
remove_action( 'wp_head', 'wlwmanifest_link');
remove_action( 'wp_head', 'wp_shortlink_wp_head');
remove_action( 'wp_head', 'wp_generator');
remove_action( 'wp_head', 'print_emoji_detection_script', 7);
remove_action( 'wp_print_styles', 'print_emoji_styles');
remove_action( 'wp_head', 'rest_output_link_wp_head');
remove_action( 'wp_head', 'rel_canonical' );
remove_action( 'wp_head', 'wp_oembed_add_discovery_links' );
add_filter( 'wp_default_scripts', 'change_default_jquery' );
function change_default_jquery( &$scripts){
if ( !is_admin() ) $scripts->remove( 'jquery');
}
function remove_all_theme_styles() {
global $wp_styles;
$wp_styles->queue = array();
}
add_action('wp_print_styles', 'remove_all_theme_styles', 100);
add_action( 'widgets_init', 'sheensay_remove_recent_comments_style' );
function sheensay_remove_recent_comments_style() {
global $wp_widget_factory;
remove_action( 'wp_head', array( $wp_widget_factory -> widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment