テーマオプションに新しいメニューを追加する前に、ユーザーがサインアップしているかどうかを確認してください。
多分このように見える
add_action( 'admin_menu', 'reg_my_theme_options' );
function reg_my_theme_options(){
if(!is_user_signup_newsletter())
return;
add_menu_page( 'Theme Options', 'Theme options', 'manage_options', 'theme-options', 'my_theme_options' );
}
function my_theme_options(){
// here your theme options page
echo "Admin Page Test";
}
function is_user_signup_newsletter(){
// here your signup newsletter logic
// maybe stored on options table
$nlt_signup_status = get_option( 'signed_up_newsletter', 'no' );
if($nlt_signup_status == 'yes'){
return true;
} else {
return false;
}
}