Skip to main content

Home/ Wordpress/ Group items tagged Role

Rss Feed Group items tagged

Luciano Ferrer

widgets - Give Editor Access To Sidebar - WordPress Development Stack Exchange - 3 views

  •  
    "The edit_theme_options capability should allow the user to edit the sidebar as described on this page : http://codex.wordpress.org/Appearance_Widgets_SubPanel Code to add to functions.php $role = get_role('editor'); $role->add_cap('edit_theme_options'); Edit: This should work to prevent editor accessing themes or menus function custom_admin_menu() { $user = new WP_User(get_current_user_id()); if (!empty( $user->roles) && is_array($user->roles)) { foreach ($user->roles as $role) $role = $role; } if($role == "editor") { remove_submenu_page( 'themes.php', 'themes.php' ); remove_submenu_page( 'themes.php', 'nav-menus.php' ); } } add_action('admin_menu', 'custom_admin_menu'); I haven't had chance to test this, but it only removes them from the menu they may still be able to access them by typing in the URL directly."
Luciano Ferrer

User Role Management in WordPress | Beginner's Guide - 1 views

  •  
    "WordPress is a CMS that comes with its own user role management system. This user role management in WordPress defines what access does a specific user has, what the user can do and cannot do on the website. As your website grows, it is important to know these user roles and permissions. One really important thing to understand before starting is that user roles should be assigned keeping in mind what user will be doing on the site."
Luciano Ferrer

WordPress › Role Scoper « WordPress Plugins - 1 views

  •  
    "CMS-like permissions for reading and editing. Content-specific restrictions and roles supplement/override WordPress roles. User groups optional. Role Scoper is a comprehensive access control solution, giving you CMS-like control of reading and editing permissions. Assign restrictions and roles to specific pages, posts or categories."
Vernon Fowler

WordPress › User Role Editor « WordPress Plugins - 0 views

  • as a copy of other existing role
  • Multiple roles could be assigned to user simultaneously
  •  
    With User Role Editor WordPress plugin you can change user role (except Administrator) capabilities easy, with a few clicks. Just turn on check boxes of capabilities you wish to add to the selected role and click "Update" button to save your changes.
Luciano Ferrer

WordPress › User Role Editor « WordPress Plugins - 1 views

  •  
    "User Role Editor WordPress plugin makes the role capabilities changing easy. You can change any standard WordPress user role (except administrator). "
Luciano Ferrer

Redirección de usuarios a páginas personalizadas al registrarse en WordPress - 0 views

  •  
    "// --------------------------------- // Redirección de registro (login) // según el tipo (rol) de usuario. // --------------------------------- function mytheme_custom_login_redirect($redirect_to, $request, $user) { global $user; if ( isset( $user->roles ) && is_array( $user->roles ) ) { // Si es un usuario administrador // le redirigimos a la página de gestión de plugins if ( in_array( 'administrator', $user->roles ) ) return home_url( '/wp-admin/plugins.php' ); // Si es un usuario con permisos de editor // le enviamos a la página de gestión de entradas. elseif ( in_array( 'editor', $user->roles ) ) return home_url( '/wp-admin/edit.php' ); // Y a todos los demás usuarios // les redirigimos a la página de inicio de la web. else return home_url(); } else { return $redirect_to; } } add_filter( 'login_redirect', 'mytheme_custom_login_redirect', 10, 3 );"
Luciano Ferrer

WordPress › Nav Menu Roles « WordPress Plugins - 1 views

  •  
    "Hide custom menu items based on user roles This plugin lets you hide custom menu items based on user roles. So if you have a link in the menu that you only want to show to logged in users, certain types of users, or even only to logged out users, this plugin is for you."
Vernon Fowler

Function Reference/current user can « WordPress Codex - 2 views

  • Do not pass a role name to current_user_can(), as this is not guaranteed to work correctly (see #22624). Instead, you may wish to try the check user role function put together by AppThemes.
  •  
    "Function Reference/current user can Description Whether the current user has a certain capability."
Vernon Fowler

Top Five User Roles and Capabilities Plugins for WordPress | Web Hosting Hub Support Ce... - 3 views

  •  
    "We've done a bit of research into the various plugins available in order to compile a list of the top five WordPress plugins for extending and managing WordPress user roles and capabilities."
Vernon Fowler

WordPress › Support » How to get the current logged in user's role? - 1 views

  •  
    "function get_user_role() { global $current_user; $user_roles = $current_user->roles; $user_role = array_shift($user_roles); return $user_role; }"
John Pratt

Incredible WordPress roles and capabilties plugins - 4 views

  •  
    great roundup of roles and capabilities plugins
Vernon Fowler

Nav Menu Roles Plugin for WordPress: Change Menus Based on User Status - 1 views

  • If you’d like to show the menu to everybody, regardless of user role (in other words, to act like a normal menu item), simply select the “By Role” option and do not check anything off the list. This will ensure that anybody visiting your site can see the link. This is also the default option when new items are added to your menus, so if you don’t want to restrict access, you don’t have to do a single thing.
JR Oakes

Ultimate Guide to Roles and Capabilities | Gary Cao - 8 views

  •  
    Great article on user roles and capabilities for Wordpress
Vernon Fowler

WordPress › Members « WordPress Plugins - 3 views

  •  
    A user, role, and content management plugin that makes WordPress a more powerful CMS.
Luciano Ferrer

WordPress › s2Member® Framework (Member Roles, Capabilities, Membership, PayP... - 1 views

  •  
    "s2Member®, a powerful (free) membership plugin for WordPress®. Protect/secure members only content with roles/capabilities."
lavanya jagan

Making Your Blog A Superstar: How to Attract Readers | Levoltz - 2 views

  • In our world where internet plays a significant role in people’s everyday lives, it is not surprising anymore that blogs are such a craze. They are everywhere, ranging from personal topics such as parenting and relationships to the more technical ones such as technology, as well as money making and the like.
  •  
    In our world where internet plays a significant role in people's everyday lives, it is not surprising anymore that blogs are such a craze. They are everywhere, ranging from personal topics such as parenting and relationships to the more technical ones such as technology, as well as money making and the like.
1 - 20 of 33 Next ›
Showing 20 items per page