คุณสามารถใช้คลาส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 );
ดังนั้นเพื่อตอบคำถามเดิมของคุณเกี่ยวกับวิธีการเปิดใช้งานผู้ดูแลระบบให้ใส่แท็ก 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!
));