Hi,
hope fully someone can help as Im pulling my hair out with this one.
I have added a custom admin page which works fine as an admin. I have set the capability to "read" so that any role can access it.
When logged in as an anything other than an admin the new page can be seen but when trying to save changes it displays the infamous message "cheatin' uh?"
Please tell me where I am going wrong here...
add_action( 'admin_menu', 'mytheme_options' );
function mytheme_options() {
// Add theme options page to the addmin menu
add_menu_page( 'Site Options', 'Site options', 'read', 'theme_options', 'mytheme_home_page' );
}
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum's parser.]