unstick_post

Definition:
function unstick_post($post_id) {}

Unstick a post.
Sticky posts should be displayed at the top of the front page.

Parameters

  • int $post_id: Post ID.

Source code

function unstick_post($post_id) {

	$stickies = get_option('sticky_posts');



	if ( !is_array($stickies) )

		return;



	if ( ! in_array($post_id, $stickies) )

		return;



	$offset = array_search($post_id, $stickies);

	if ( false === $offset )

		return;



	array_splice($stickies, $offset, 1);



	update_option('sticky_posts', $stickies);

}

3145

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: