Created
October 10, 2016 17:58
-
-
Save kylephillips/9433be6986b402e7b4e8a0b03f8c5ed9 to your computer and use it in GitHub Desktop.
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('the_title', 'filterNestedPagesTitles', 10, 3); | |
function filterNestedPagesTitles($title, $post_id, $view = false) | |
{ | |
if ( !is_admin() ) return $title; | |
$screen = get_current_screen(); | |
if ( $screen->base != 'toplevel_page_nestedpages' ) return $title; | |
if ( !isset($view) || $view != 'nestedpages_title' ) return $title; | |
// Code to configure custom title here | |
$title = 'Custom Title'; | |
return $title; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment