How to make the Newsletter plugin visible to users with author privileges?
The plugin contains for example these lines: add_menu_page(‘Newsletter’, ‘Newsletter’, ($this->options[‘editor’] == 1) ? ‘manage_categories’ : ‘manage_options’, ‘newsletter_main_index’); add_submenu_page(‘newsletter_main_index’, $title, $title, ($newsletter->options[‘editor’] == 1) ? ‘manage_categories’ : ‘manage_options’, $name, $name); add_submenu_page(null, $title, $title, ($newsletter->options[‘editor’] == 1) ? ‘manage_categories’ : ‘manage_options’, $name, $name); so it looks like you have the option to display the Newsletter menu for … Read more