If the `get_the_excerpt()` is called out of bounds of a global `$post`, return ''.
Fixes #22413. Built from https://develop.svn.wordpress.org/trunk@28880 git-svn-id: http://core.svn.wordpress.org/trunk@28679 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cf95c6ecc2
commit
13d0a45932
|
@ -27,7 +27,7 @@ function the_ID() {
|
||||||
*/
|
*/
|
||||||
function get_the_ID() {
|
function get_the_ID() {
|
||||||
$post = get_post();
|
$post = get_post();
|
||||||
return ! empty ( $post ) ? $post->ID : false;
|
return ! empty( $post ) ? $post->ID : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -341,6 +341,9 @@ function get_the_excerpt( $deprecated = '' ) {
|
||||||
_deprecated_argument( __FUNCTION__, '2.3' );
|
_deprecated_argument( __FUNCTION__, '2.3' );
|
||||||
|
|
||||||
$post = get_post();
|
$post = get_post();
|
||||||
|
if ( empty( $post ) ) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
if ( post_password_required() ) {
|
if ( post_password_required() ) {
|
||||||
return __( 'There is no excerpt because this is a protected post.' );
|
return __( 'There is no excerpt because this is a protected post.' );
|
||||||
|
|
Loading…
Reference in New Issue