Created
June 5, 2015 09:49
-
-
Save jester1979/711cb4a23cdca2d4bf0c to your computer and use it in GitHub Desktop.
Adding something to your WP head
This file contains 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', 'fpl_add_stuff_to_head' ); | |
function fpl_add_stuff_to_head() { | |
?> | |
<!-- BEGIN add your <head> html below --> | |
<!-- END add your <head> html below --> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment