Created
September 19, 2018 08:27
-
-
Save pixmin/d2d2be296e4779cf547a758efbb1cc85 to your computer and use it in GitHub Desktop.
Wordpress title filter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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