> ## Content Index
> Fetch the complete content index at: https://ostreff.info/llms.txt
> Use this file to discover other available public pages before exploring further.

# Code to make a wordpress post no-sticky
- URL: https://ostreff.info/code-to-make-a-wordpress-post-no-sticky/
- Published: 2024-12-05T19:21:59.000Z
- Updated: 2025-02-22T10:27:24.000Z
- Author: Jordan Ostreff
- Tags: MySQL

From time to time in [WordPress](https://wordpress.org/?ref=ostreff.info) you can want to remove [sticky post](https://developer.wordpress.org/themes/functionality/sticky-posts/?ref=ostreff.info) mark on some posts. But [the theme](https://wordpress.org/themes/?ref=ostreff.info) which you are using, is hiding the button on [editor](https://wordpress.com/support/wordpress-editor/?ref=ostreff.info) interface. Simple solution to delete all sticky posts - is to modify database using this simple mysql update:

```sql
update wp_options set option_value="a:0:{}" where option_name="sticky_posts";
```