Skip to content

Instantly share code, notes, and snippets.

@pixmin
Created September 19, 2018 08:27
Show Gist options
  • Select an option

  • Save pixmin/d2d2be296e4779cf547a758efbb1cc85 to your computer and use it in GitHub Desktop.

Select an option

Save pixmin/d2d2be296e4779cf547a758efbb1cc85 to your computer and use it in GitHub Desktop.
Wordpress title filter
add_filter('document_title_parts', 'filter_title_part');
function filter_title_part($title) {
$title['title'] = 'Codi ' . $title['title'];
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment