How to add function to change permittion show featured post
-
Hello,I want to add a function on function.php to change permittion edit custom post type also see star, Thank’s
I see this on plugin
function manage_posts_columns($columns) {
global $current_user;
get_currentuserinfo();
if (current_user_can(‘edit_posts’, $user_id)) {
$columns[‘featured’] = __(‘Featured’);
}
return $columns;
}
how to change this on function.php
- The topic ‘How to add function to change permittion show featured post’ is closed to new replies.