3
I created a type post to customize the wordpress admin of a client, everything works perfectly, however the option to change the author of the post in "quick edit" does not appear, I know by default it will not show to custom fields, I have the code to include in functions.php to show, but I did it and I can’t adjust this function, someone knows where I’m going wrong or can help me with another solution. It is not the Screen Option setting.Follow the Code I have below:
// ADICIONAR EDITAR AUTOR
function allowAuthorEditing()
{
add_post_type_support( 'mytype', 'author' );
}
add_action('init','allowAuthorEditing');