Why is remove_setting and remove_control not working?
I've renamed my theme folder and all other title related bits, but I had a long list of settings and controls that were added with labels related to the old name, I want to remove these.
I believe I'm doing it correctly with the following:
function remove_settings_controls($wp_customize) {
$wp_customize-remove_setting('psychic2016_logo');
$wp_customize-remove_control('psychic2016_logo');
$wp_customize-remove_setting('psychic2016_facebook');
$wp_customize-remove_control('psychic2016_facebook');
$wp_customize-remove_setting('psychic2016_twitter');
$wp_customize-remove_control('psychic2016_twitter');
$wp_customize-remove_setting('psychic2016_google_profile');
$wp_customize-remove_control('psychic2016_google_profile');
$wp_customize-remove_setting('psychic2016_google_analytics');
$wp_customize-remove_control('psychic2016_google_analytics');
$wp_customize-remove_setting('psychic2016_xml_id');
$wp_customize-remove_control('psychic2016_xml_id');
$wp_customize-remove_setting('psychic2016_xml_overflow');
$wp_customize-remove_control('psychic2016_xml_overflow');
$wp_customize-remove_setting('psychic2016_geoip_default');
$wp_customize-remove_control('psychic2016_geoip_default');
$wp_customize-remove_setting('psychic2016_geoip_status');
$wp_customize-remove_control('psychic2016_geoip_status');
$wp_customize-remove_setting('psychic2016_psychics_url');
$wp_customize-remove_control('psychic2016_psychics_url');
$wp_customize-remove_setting('psychic2016_offers');
$wp_customize-remove_control('psychic2016_offers');
$wp_customize-remove_setting('psychic2016_click2call');
$wp_customize-remove_control('psychic2016_click2call');
$wp_customize-remove_setting('psychic2016_prem');
$wp_customize-remove_control('psychic2016_prem');
$wp_customize-remove_setting('psychic2016_prem_badge');
$wp_customize-remove_control('psychic2016_prem_badge');
$wp_customize-remove_setting('psychic2016_sms');
$wp_customize-remove_control('psychic2016_sms');
$wp_customize-remove_setting('psychic2016_webchat_url');
$wp_customize-remove_control('psychic2016_webchat_url');
$wp_customize-remove_setting('psychic2016_webcam_url');
$wp_customize-remove_control('psychic2016_webcam_url');
$wp_customize-remove_setting('psychic2016_webcam_ID');
$wp_customize-remove_control('psychic2016_webcam_ID');
$wp_customize-remove_setting('psychic2016_click2call_url');
$wp_customize-remove_control('psychic2016_click2call_url');
$wp_customize-remove_setting('psychic2016_sms_url');
$wp_customize-remove_control('psychic2016_sms_url');
$wp_customize-remove_setting('psychic2016_featured_image_full');
$wp_customize-remove_control('psychic2016_featured_image_full');
$wp_customize-remove_setting('psychic2016_recaptcha_site_key');
$wp_customize-remove_control('psychic2016_recaptcha_site_key');
$wp_customize-remove_setting('psychic2016_recaptcha_secret_key');
$wp_customize-remove_control('psychic2016_recaptcha_secret_key');
$wp_customize-remove_setting('psychic2016_categories_clairvoyant');
$wp_customize-remove_control('psychic2016_categories_clairvoyant');
$wp_customize-remove_setting('psychic2016_categories_clairsentient');
$wp_customize-remove_control('psychic2016_categories_clairsentient');
$wp_customize-remove_setting('psychic2016_categories_clairaudient');
$wp_customize-remove_control('psychic2016_categories_clairaudient');
$wp_customize-remove_setting('psychic2016_categories_life_coach');
$wp_customize-remove_control('psychic2016_categories_life_coach');
$wp_customize-remove_setting('psychic2016_categories_counsellor');
$wp_customize-remove_control('psychic2016_categories_counsellor');
$wp_customize-remove_setting('psychic2016_categories_medium');
$wp_customize-remove_control('psychic2016_categories_medium');
$wp_customize-remove_setting('psychic2016_categories_psychic');
$wp_customize-remove_control('psychic2016_categories_psychic');
$wp_customize-remove_setting('psychic2016_categories_reiki_healer');
$wp_customize-remove_control('psychic2016_categories_reiki_healer');
$wp_customize-remove_setting('psychic2016_categories_wicca');
$wp_customize-remove_control('psychic2016_categories_wicca');
$wp_customize-remove_setting('psychic2016_subjects_love_relationship');
$wp_customize-remove_control('psychic2016_subjects_love_relationship');
$wp_customize-remove_setting('psychic2016_subjects_career_work');
$wp_customize-remove_control('psychic2016_subjects_career_work');
$wp_customize-remove_setting('psychic2016_subjects_pets_animals');
$wp_customize-remove_control('psychic2016_subjects_pets_animals');
$wp_customize-remove_setting('psychic2016_subjects_destiny_life_path');
$wp_customize-remove_control('psychic2016_subjects_destiny_life_path');
$wp_customize-remove_setting('psychic2016_subjects_past_lives');
$wp_customize-remove_control('psychic2016_subjects_past_lives');
$wp_customize-remove_setting('psychic2016_subjects_deceased_loved_ones');
$wp_customize-remove_control('psychic2016_subjects_deceased_loved_ones');
$wp_customize-remove_setting('psychic2016_tools_angel_cards');
$wp_customize-remove_control('psychic2016_tools_angel_cards');
$wp_customize-remove_setting('psychic2016_tools_astrology');
$wp_customize-remove_control('psychic2016_tools_astrology');
$wp_customize-remove_setting('psychic2016_tools_crystals');
$wp_customize-remove_control('psychic2016_tools_crystals');
$wp_customize-remove_setting('psychic2016_tools_numerology');
$wp_customize-remove_control('psychic2016_tools_numerology');
$wp_customize-remove_setting('psychic2016_tools_oracle_cards');
$wp_customize-remove_control('psychic2016_tools_oracle_cards');
$wp_customize-remove_setting('psychic2016_tools_pendulum');
$wp_customize-remove_control('psychic2016_tools_pendulum');
$wp_customize-remove_setting('psychic2016_tools_runestones');
$wp_customize-remove_control('psychic2016_tools_runestones');
$wp_customize-remove_setting('psychic2016_tools_tarot_cards');
$wp_customize-remove_control('psychic2016_tools_tarot_cards');
}
add_action('customize_register', 'remove_settings_controls', 1000);
However, when I re-load the frontend, I expect there to be loads of errors from the calls within the template files to get_theme_mod()
where these settings will no longer return anything, but nothing has changed.
Even if I var_dump(get_theme_mod('psychic2016_xml_id'))
right underneath the above function, I get the value that was stored printed.
In the WP admin customizer, none of the previous controls are showing, so although the options have been removed, the values are still stored, which should have been deleted.
Why haven't they been removed as per the function above?
Any help is greatly appreciated.
Topic theme-customizer get-theme-mod Wordpress
Category Web