“Wie man alle Rollen in WordPress bekommt” Code-Antworten

Wie man alle Rollen in WordPress bekommt

/* get all role in wordpress in associative key = role(slug) => value(Role Display name) by [email protected]  */
function get_role_names() {

global $wp_roles;

if ( ! isset( $wp_roles ) )
    $wp_roles = new WP_Roles();

return $wp_roles->get_names();
}
PHPMarvel

WordPress erhalten WP -Rollen

function get_role_names() {

global $wp_roles;

if ( ! isset( $wp_roles ) )
    $wp_roles = new WP_Roles();

return $wp_roles->get_names();
}
Fair Ferret

Ähnliche Antworten wie “Wie man alle Rollen in WordPress bekommt”

Fragen ähnlich wie “Wie man alle Rollen in WordPress bekommt”

Weitere verwandte Antworten zu “Wie man alle Rollen in WordPress bekommt” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen