-
-
Save twitnic/b36a2628b814c00ab20a to your computer and use it in GitHub Desktop.
Revisions
-
KeSch created this gist
Aug 10, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ <?php /* Module Name: WordPress-Header aufräumen Description: Entfernt nicht benötigte Links aus dem WordPress-Header. [Frontend] Author: Kevin Schludermann Author URI: http://kevinschludermann.com */ /* Sicherheitsabfrage */ if ( !class_exists('Toolbox') ) { die(); } /* EditURI-Link entfernen (wird von div. Blog-Clients genutzt) */ remove_action( 'wp_head', 'rsd_link' ); /* wlmanifest-Link entfernen (wird vom Windows Live Writer verwendet) */ remove_action( 'wp_head', 'wlwmanifest_link' ); /* shortlink entfernen (wie z.B. "http://example.com/?p=41") */ remove_action( 'wp_head', 'wp_shortlink_wp_head' ); /* WordPress Generator inkl. Versionsnummer entfernen */ remove_action( 'wp_head', 'wp_generator' );