You are not allowed to view this page.

LOGOUT

'); function ddhap_add_option_pages() { if (function_exists('add_options_page')) { add_options_page('Hide Admin', 'DDHideAdmin', 8, __FILE__, 'ddhap_options_page'); } } function ddhap_options_page() { global $ddhap_version; if (isset($_POST['set_defaults'])) { echo '

'; update_option('ddhap_message', '

You are not allowed to view this page.

LOGOUT

'); echo 'Default Options Loaded!'; echo '

'; } else if (isset($_POST['info_update'])) { echo '

'; update_option('ddhap_message', (string)$_POST["ddhap_message"]); echo 'Configuration Updated!'; echo '

'; } ?>

Hide Admin Panel from Subscribers v

For information and updates, please visit:
http://www.dagondesign.com/articles/hide-admin-panel-from-subscribers-plugin-for-wordpress/

">
Options

Custom Message

This message will be shown to subscribers who view /wp-admin/
  • HTML tags and CSS are supported
  • If you wish to provide a 'log out' link on this page, just add the word LOGOUT (case-sensitive) where you want it to appear
' . __('Log out') . ''; $ddhap_message = stripslashes(get_option('ddhap_message')); $ddhap_message = str_replace('LOGOUT', $logout_link, $ddhap_message); echo $ddhap_message; exit(); } } add_action('admin_menu', 'ddhap_add_option_pages'); add_action('admin_menu', 'ddhap_process'); ?>