Created
November 15, 2017 10:39
-
-
Save wpflippercode/5bf02524caee3d369a2d0c8921d9911c to your computer and use it in GitHub Desktop.
Customize Plugin Settings In JS File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('agp_current_settings','agp_changed_plugin_settings'); | |
function agp_changed_plugin_settings($settings) { | |
//Modify Settings According To Custom Conditions. | |
return $settings; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment