Black list filter is not working
-
I am trying to execute this from plugin in the “plugind_loaded” hook
function wordpress_options_blacklist($options) { $options[] = 'admin_email'; $options[] = 'home'; return $options; } add_filter('options_import_blacklist', 'wordpress_options_blacklist');
But it is not working , Any idea?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Black list filter is not working’ is closed to new replies.