Add check to make sure a valid argument was passed to `get_page_uri()`.
Props Viper007Bond. Fixes #24491. Built from https://develop.svn.wordpress.org/trunk@25262 git-svn-id: http://core.svn.wordpress.org/trunk@25230 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5cb01f0b9b
commit
d1a40562eb
wp-includes
|
@ -3597,15 +3597,18 @@ function _page_traverse_name( $page_id, &$children, &$result ){
|
|||
* @since 1.5.0
|
||||
*
|
||||
* @param mixed $page Page object or page ID.
|
||||
* @return string Page URI.
|
||||
* @return string|false Page URI, false on error.
|
||||
*/
|
||||
function get_page_uri($page) {
|
||||
function get_page_uri( $page ) {
|
||||
$page = get_post( $page );
|
||||
|
||||
if ( ! $page )
|
||||
return false;
|
||||
|
||||
$uri = $page->post_name;
|
||||
|
||||
foreach ( $page->ancestors as $parent ) {
|
||||
$uri = get_post( $parent )->post_name . "/" . $uri;
|
||||
$uri = get_post( $parent )->post_name . '/' . $uri;
|
||||
}
|
||||
|
||||
return $uri;
|
||||
|
|
Loading…
Reference in New Issue