Skip to content

Instantly share code, notes, and snippets.

@fovoc
Last active August 29, 2015 13:57
Show Gist options
  • Save fovoc/9787830 to your computer and use it in GitHub Desktop.
Save fovoc/9787830 to your computer and use it in GitHub Desktop.
How to change homepage title in Shoestrap 3.1.0.2
/*
* Change homepage title
*/
function shoestrap_new_homepage_title() {
echo 'My new title';
}
function shoestrap_change_homepage_title() {
if (is_home()) {
add_action( 'shoestrap_page_header_override', 'shoestrap_new_homepage_title' );
}
}
add_action( 'wp', 'shoestrap_change_homepage_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment