Skip to content

Instantly share code, notes, and snippets.

@Zodiac1978
Last active July 13, 2016 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zodiac1978/f8ee3f78ebbdca477c5fa0f4466a7b3b to your computer and use it in GitHub Desktop.
Save Zodiac1978/f8ee3f78ebbdca477c5fa0f4466a7b3b to your computer and use it in GitHub Desktop.
WordPress-Snippet: Redakteuren erlauben, das Dashboard zu bearbeiten, also auch das Statify-Dashboard-Widget.
<?php
function add_theme_caps() {
$role = get_role('editor');
$role->add_cap('edit_dashboard');
}
add_action('admin_init', 'add_theme_caps');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment