Skip to content

Instantly share code, notes, and snippets.

@ejntaylor
Created March 20, 2015 10:55
Show Gist options
  • Save ejntaylor/9c3b9629fac87beb6f51 to your computer and use it in GitHub Desktop.
Save ejntaylor/9c3b9629fac87beb6f51 to your computer and use it in GitHub Desktop.
Example: Add SEO content to home page
<?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