mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Posts, Post Types: Introduce is_sticky
filter in is_sticky()
to provide more flexibility for custom sticky post implementations.
Props dehisok, greenshady. Fixes #37629. Built from https://develop.svn.wordpress.org/trunk@45671 git-svn-id: http://core.svn.wordpress.org/trunk@45482 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
316fa4aecb
commit
8ab7bbe385
@ -2213,15 +2213,17 @@ function is_sticky( $post_id = 0 ) {
|
||||
|
||||
$stickies = get_option( 'sticky_posts' );
|
||||
|
||||
if ( ! is_array( $stickies ) ) {
|
||||
return false;
|
||||
}
|
||||
$is_sticky = is_array( $stickies ) && in_array( $post_id, $stickies );
|
||||
|
||||
if ( in_array( $post_id, $stickies ) ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
/**
|
||||
* Filters whether a post is sticky.
|
||||
*
|
||||
* @since 5.3.0
|
||||
*
|
||||
* @param bool $is_sticky Whether a post is sticky.
|
||||
* @param int $post_id Post ID.
|
||||
*/
|
||||
return apply_filters( 'is_sticky', $is_sticky, $post_id );
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -13,7 +13,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-alpha-45670';
|
||||
$wp_version = '5.3-alpha-45671';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user