undefinedio / stash

Wordpress stack with gulp, capistrano, timber + twig and webpack
MIT License
10 stars 6 forks source link

Allow all admins to edit string translation #87

Open VincentPeters opened 7 years ago

VincentPeters commented 7 years ago

add_action('admin_menu', function () { if (!current_user_can('manage_options') && function_exists('PLL')) { add_menu_page(__('Strings translations', 'polylang'), __('Languages', 'polylang'), 'edit_posts', 'mlang_strings', array(PLL(), 'languages_page'), 'dashicons-translation'); } });