Skip to content

Instantly share code, notes, and snippets.

@mattiasghodsian
Last active April 28, 2023 08:32
Show Gist options
  • Select an option

  • Save mattiasghodsian/ce6cf15176397848b0b6b063ede4318c to your computer and use it in GitHub Desktop.

Select an option

Save mattiasghodsian/ce6cf15176397848b0b6b063ede4318c to your computer and use it in GitHub Desktop.
[Wordpress] Modify the page title (<title>)
/**
* Modify the page title (<title>)
* Author: Mattias Ghodsian
* Donate a cup of coffee: https://www.buymeacoffee.com/mattiasghodsian
* Donate Eth: 0xBBB96204E45D11C9799c6B12E6eE6F0d4A071Ef5
*/
add_filter('wp_title', 'filter_page_title', 99);
add_filter( 'bloginfo', 'filter_page_title', 10, 2 );
function filter_page_title($title) {
if ( strpos( $title, '-arkiv') )
$title = str_replace(['-arkiv', '-archive'], '', $title);
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment