Code to make a wordpress post no-sticky
From time to time in WordPress you can want to remove sticky post mark on some posts. But the theme which you are using, is hiding the button on editor interface. Simple solution to delete all sticky posts - is to modify database using this simple mysql update:
update wp_options set option_value="a:0:{}" where option_name="sticky_posts";