Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

change author/instructor for Admin

$
0
0

Replies: 0

Add this code in theme file functions.php

function allowCoursesAuthorEditing()
{
    if(current_user_can('administrator')){
        add_post_type_support( 'courses', 'author' );
    }
}

add_action('init','allowCoursesAuthorEditing');

Viewing all articles
Browse latest Browse all 59525

Trending Articles