Prevent notice check on invalid sticky settings. See #9393 props nbachiyski.
git-svn-id: http://svn.automattic.com/wordpress/trunk@11230 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
792271cc4b
commit
f0c4dc3058
|
@ -2304,7 +2304,7 @@ class WP_Query {
|
||||||
|
|
||||||
// Put sticky posts at the top of the posts array
|
// Put sticky posts at the top of the posts array
|
||||||
$sticky_posts = get_option('sticky_posts');
|
$sticky_posts = get_option('sticky_posts');
|
||||||
if ( $this->is_home && $page <= 1 && !empty($sticky_posts) && !$q['caller_get_posts'] ) {
|
if ( $this->is_home && $page <= 1 && is_array($sticky_posts) && !empty($sticky_posts) && !$q['caller_get_posts'] ) {
|
||||||
$num_posts = count($this->posts);
|
$num_posts = count($this->posts);
|
||||||
$sticky_offset = 0;
|
$sticky_offset = 0;
|
||||||
// Loop over posts and relocate stickies to the front.
|
// Loop over posts and relocate stickies to the front.
|
||||||
|
|
Loading…
Reference in New Issue