mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
197 B
Text
7 lines
197 B
Text
function wp_remove_role() {
|
|
// remove_role( 'editor' );
|
|
remove_role( 'author' );
|
|
remove_role( 'contributor' );
|
|
remove_role( 'subscriber' );
|
|
}
|
|
add_action( 'init', 'wp_remove_role' );
|