cliffordp
1/1/2015 - 6:16 PM

http://www.pagelinestheme.com/dms-editor-only-specified-admins/

<?php
// From http://www.pagelinestheme.com/dms-editor-only-specified-admins/

// If not defined all users with edit_theme_options capability have access to the DMS Editor.

// Example 1, only allow username 'admin' to use DMS Editor
define( 'PL_EDITOR_LOCK', 'admin' );

// Example 2, allow 3 users to use DMS Editor
define( 'PL_EDITOR_LOCK', 'bobadmin,simonadmin,sallyadmin' );

// Example 3, allow User IDs 7 and 11 and username 'admin' to use DMS Editor
define('PL_EDITOR_LOCK','7,admin,11');