Skip to content

Instantly share code, notes, and snippets.

@amdrew
Created November 1, 2013 03:59
Show Gist options
  • Save amdrew/7260787 to your computer and use it in GitHub Desktop.
Save amdrew/7260787 to your computer and use it in GitHub Desktop.
Remove page title on homepage
function my_child_theme_static_home_page() {
if ( is_front_page() )
remove_action( 'shopfront_the_title', 'shopfront_render_the_title' );
}
add_action( 'template_redirect', 'my_child_theme_static_home_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment