Since Wordpress sticky posts feature allow the post checked as sticky in post publish panel to be placed at the top of the front page of posts. I want to show all posts in index without sticky posts: Answer You could use pre_get_posts action hook to manipulate the query. Since you need to modify the query on your index.php, the
Tag: wordpress-admin
show category and tags when using register_post_type
So i used register_post_type to add books post_type section. But i want to show category and tags(and more) on the back panel edit.php. I know how to this(adding custom fields) in regular post. …