unstick_post

函数
unstick_post ( $post_id )
参数
  • (int) $post_id Post ID.
    Required:
定义位置
相关方法
stick_postnext_postnext_postssanitize_postwp_insert_post
引入
2.7.0
弃用
-

unstick_post: 解除一个先前”粘”的文章的粘性: 这个函数从一个文章中移除”粘性”状态,这样它就不再显示在页面的顶部。

取消置顶一篇文章。

置顶文章应该显示在首页的顶部。

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 );
	}
}

常见问题

FAQs
查看更多 >