функция
since 2.7.0
unstick_post()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
unstick_post( int $post_id )
Описание
Прилепленные записи должны отображаться в начале главной страницы.
Оригинал (английский)
Sticky posts should be displayed at the top of the front page.
Параметры
$post_id
int
обязательный
Идентификатор записи.
Исходный код
wp-includes/post.php:3323
function unstick_post( $post_id ) {
$post_id = (int) $post_id;
$stickies = get_option( 'sticky_posts' );
if ( ! is_array( $stickies ) ) {
return;
}
$stickies = array_values( array_unique( array_map( 'intval', $stickies ) ) );
if ( ! in_array( $post_id, $stickies, true ) ) {
return;
}
$offset = array_search( $post_id, $stickies, true );
if ( false === $offset ) {
return;
}
array_splice( $stickies, $offset, 1 );
$updated = update_option( 'sticky_posts', $stickies );
if ( $updated ) {
/**
* Fires once a post has been removed from the sticky list.
*
* @since 4.6.0
*
* @param int $post_id ID of the post that was unstuck.
*/
do_action( 'post_unstuck', $post_id );
}
}
История изменений
| Версия | Описание |
|---|---|
| 2.7.0 | Introduced. |

