Remove WP-Optimize from Media Column
-
Hi, I would like to remove the WP-Optimize column from the Media page. I know I can do it through Screen Settings but I’d rather do it with:
add_filter('manage_media_columns','wpse_77687_remove_media_columns'); function wpse_77687_remove_media_columns($columns) { $roles = array('dailyadmin', 'editor'); foreach($roles as $role) { if (current_user_can($role)) { unset($columns['imsanity']); /* Column ID value */ unset($columns['wpo_smush']); break; } } return $columns; }
This unfortunately is not working. What am I doing wrong?
Thanks in advance.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Remove WP-Optimize from Media Column’ is closed to new replies.