Skip to content

Instantly share code, notes, and snippets.

@pixelbart
Created August 30, 2019 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pixelbart/ed4366b0d9b300c8a78102a869bdf2a8 to your computer and use it in GitHub Desktop.
Save pixelbart/ed4366b0d9b300c8a78102a869bdf2a8 to your computer and use it in GitHub Desktop.
Change the title tag of WordPress
<?php
/**
* Custom title tag in WordPress
*
* @author Kevin Pliester
*/
/**
* Set custom title
*
* @param string $title default title.
*
* @return array
*/
function custom_title( $title ) {
return $title;
}
/**
* Init custom title
*/
add_filter( 'pre_get_document_title', [ $this, 'custom_title' ], PHP_INT_MAX, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment