Created
March 7, 2018 14:05
-
-
Save skpy/b48f6e0b437e62b3ee56db4c8d444fde to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wp_head', 'remove_default_wp_actions', 11 ); | |
function remove_default_wp_actions(){ | |
remove_action('wp_head', 'rsd_link' ); | |
remove_action('wp_head', 'wlwmanifest_link' ); | |
remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10); | |
remove_action('wp_head', 'print_emoji_detection_script', 7 ); | |
remove_action( 'wp_head', 'wp_generator' ); | |
remove_action( 'wp_head', 'rel_canonical' ); | |
remove_action( 'wp_head', 'wp_shortlink_wp_head', 10); | |
} |
Author
skpy
commented
Mar 22, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment