Save the settings, even after deactivation?
-
Dear Plugin Creator,
First of all; thank you very much for the plugin! WOrks like a charm.
But I would like to add 1 functionality:
Can I activate the plugin to remove the noreferrer and then deactivate the plugin, so that it keeps the noreferrer?I have also added this code in my functions.php for it:
//This code removes noreferrer from your new or updated posts
function my_targeted_link_rel($rel_values) {
return ‘noopener’;
}
add_filter(‘wp_targeted_link_rel’, ‘my_targeted_link_rel’,999);I want to have as less plugins as possible and just need a onetime fix for this?
Would love to hear from you!
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Save the settings, even after deactivation?’ is closed to new replies.