Created
March 20, 2015 10:55
-
-
Save ejntaylor/9c3b9629fac87beb6f51 to your computer and use it in GitHub Desktop.
Example: Add SEO content to home page
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
<?php | |
// add home page content | |
add_action ('after_primary','custom_homepage_content'); | |
function custom_homepage_content() { | |
if (is_front_page()) { | |
echo ''; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment