mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
5 lines
193 B
Text
5 lines
193 B
Text
add_filter('seopress_seo_admin_menu_title', 'sp_seo_admin_menu_title');
|
|
function sp_seo_admin_menu_title($name) {
|
|
$name = __('my custom page name', 'your-text-domain');
|
|
return $name;
|
|
}
|