आप WP_Role वर्ग का उपयोग कर सकते हैं ,
// get the the role object
$role_object = get_role( $role_name );
// add $cap capability to this role object
$role_object->add_cap( $capability_name );
// remove $cap capability from this role object
$role_object->remove_cap( $capability_name );
तो अपने मूल प्रश्न को संबोधित करने के लिए कि कैसे Admins को SCRIPT और IFRAME टैग को पोस्ट सामग्री में दर्ज करने के लिए सक्षम किया जाए, आप 'अनफिल्टर्ड_एचटीएमएच' क्षमता की तलाश कर रहे हैं, जो कि मल्टीसाइट में केवल सुपर एडमिंस को दी जाती है।
// get the the role object
$admin_role = get_role( 'administrator' );
// grant the unfiltered_html capability
$admin_role->add_cap( 'unfiltered_html', true );
या आप इसे अपने कार्यों में एक बार चला सकते हैं:
/* Roles & Capabilities */
add_role('professional', 'Professional User', array(
'read' => true, // True allows that capability, False specifically removes it.
'edit_posts' => true,
'delete_posts' => true,
//'edit_published_posts' => true,
//'publish_posts' => true,
//'edit_files' => true,
'upload_files' => true //last in array needs no comma!
));