wp/wp-includes/class-walker-page-dropdown.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
child 19 3d72ae0968f4
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
    69 		}
    69 		}
    70 		$output .= '>';
    70 		$output .= '>';
    71 
    71 
    72 		$title = $page->post_title;
    72 		$title = $page->post_title;
    73 		if ( '' === $title ) {
    73 		if ( '' === $title ) {
    74 			/* translators: %d: ID of a post */
    74 			/* translators: %d: ID of a post. */
    75 			$title = sprintf( __( '#%d (no title)' ), $page->ID );
    75 			$title = sprintf( __( '#%d (no title)' ), $page->ID );
    76 		}
    76 		}
    77 
    77 
    78 		/**
    78 		/**
    79 		 * Filters the page title when creating an HTML drop-down list of pages.
    79 		 * Filters the page title when creating an HTML drop-down list of pages.