Last active
April 28, 2023 08:32
-
-
Save mattiasghodsian/ce6cf15176397848b0b6b063ede4318c to your computer and use it in GitHub Desktop.
[Wordpress] Modify the page title (<title>)
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
| /** | |
| * 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