Search code examples
phpmysqlwordpressadmin

Wordpress - author dropdown / screen options not showing in admin - workaround needed


I have inherited a wordpress website and the admin panel seems to be a little messed up. There is no 'Author' dropdown on the posts admin pages. Normally you would select this in the 'screen option' so it displays but this is not working.

Is there a setting in the database that I can set to display the author dropdown or is there another workaround so that I can have this feature?

See attached images for features missing.

enter image description here enter image description here

Thanks


Solution

  • UPDATED:

    One possibility is that your theme (probably in functions.php) removed that feature, something like:

    remove_post_type_support( 'post', 'author' );
    

    If you can't find it, try adding it by doing something like:

    function wpcodex_add_author_support_for_posts() {
        add_post_type_support( 'post', 'author' );
    }
    add_action( 'init', 'wpcodex_add_author_support_for_posts' );