From b4c75b8ab1a028e6bde7778967664a13f4c01fa0 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 26 Jun 2014 02:04:38 +0000 Subject: [PATCH] Check for the existence of `$post` before using it in `get_the_ID()`. Return `false` if it doesn't exist. Props UmeshSingla. Fixes #17034. git-svn-id: https://develop.svn.wordpress.org/trunk@28844 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post-template.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php index ed49895ecd..0f1570a21b 100644 --- a/src/wp-includes/post-template.php +++ b/src/wp-includes/post-template.php @@ -23,10 +23,11 @@ function the_ID() { * @since 2.1.0 * @uses $post * - * @return int + * @return int|bool The ID of the current item in the WordPress Loop. False if $post is not set. */ function get_the_ID() { - return get_post()->ID; + $post = get_post(); + return ! empty ( $post ) ? $post->ID : false; } /**