Add Media Button to TinyMCE Editor (for Administrators Only)
// Add “Add Media” button to TinyMCE editor add_filter(‘frm_rte_options’, ‘frm_rte_options’, 10, 2); function frm_rte_options($opts, $field){ if ( current_user_can(‘manage_options’ ) ) { $opts[‘media_buttons’] = true; } return $opts; }Continue reading