Tagged Questions
0
votes
1answer
188 views
Remove “minor-publishing” div from Publish admin metabox
I want to remove the #minor-publishing div from the Publish admin metabox. I came across How to HIDE everything in PUBLISH metabox except Move to Trash & PUBLISH button and ...
1
vote
2answers
799 views
How to remove categories filter from wordpress admin?
I removed the categories column from "All posts" page by applying this code.
add_filter("manage_edit-post_columns", "my_post_edit_columns");
function my_post_edit_columns($columns){
...