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