• Resolved chrwei

    (@chrwei)


    In the list of galleries I see the filter “all” and “mine” with different post counts, but there’s no Author column like other post types have, even as admin I cannot see a gallery’s author, nor can I change it like other post types. “Screen Options” also doesn’t list Author as an available column, and it’s not a field in Quick Edit either.

    is this an intentional limitation or an option I’ve overlooked or misunderstood?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author bradvin

    (@bradvin)

    hi there,

    You have not overlooked it, there is simply no author column on the foogallery CPT list.

    You can add one by adding this custom code to your functions.php:

    add_filter( 'manage_edit-foogallery_columns', function( $columns ) {
    $columns['author'] = 'Author';
    return $columns;
    }, 99 );
    Thread Starter chrwei

    (@chrwei)

    that did work, but in trying to get Quick Edit working too I found a better way

    add_post_type_support( 'foogallery', 'author' );

    this seems to place it everywhere I’d expect it to be, even without the code you suggested

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.