Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created February 3, 2016 05:21
Show Gist options
  • Save hsleonis/73a50ce9b1c024d471c5 to your computer and use it in GitHub Desktop.
Save hsleonis/73a50ce9b1c024d471c5 to your computer and use it in GitHub Desktop.
Wordpress dynamic title
<?php
add_filter( 'wp_title', 'wpdocs_hack_wp_title_for_home' );
function wpdocs_hack_wp_title_for_home( $title )
{
if ( empty( $title ) && ( is_home() || is_front_page() ) ) {
$title = __( 'Home', 'themeaxe' ) . ' | ' . get_bloginfo( 'description' );
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment