Skip to content

Instantly share code, notes, and snippets.

@torounit
Created December 16, 2015 05:37
Show Gist options
  • Save torounit/dfa2ce1d72d223b4e5af to your computer and use it in GitHub Desktop.
Save torounit/dfa2ce1d72d223b4e5af to your computer and use it in GitHub Desktop.
WordPress 4.4 で 固定フロントページの時に、固定ページのタイトルが<title>に出力されるようになったのを戻す。
<?php
add_filter( 'document_title_parts', function ( $title ) {
if ( is_front_page() ) {
unset( $title['title'] );
$title['tagline'] = get_bloginfo( 'description', 'display' );
}
return $title;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment