Created
September 2, 2016 03:48
-
-
Save furenku/7c5bcda8dfc156105cc12ac6be87b0a4 to your computer and use it in GitHub Desktop.
filter archive title prefix.php
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('get_the_archive_title', function ($title) { | |
| return preg_replace('/^\w+: /', '', $title); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
yeah