$GLOBALS & global doesn’t work [closed]
In my opinion you shouldn’t use $GLOBALS at all. add_filter shouldn’t be used the way you are using it. So there is apply_filter in wordpress that returns a filtered value such that $my_variable = apply_filter(‘my_filter_tag’, ‘default_value’, $arg1); In the above code ‘default_value’ can be anything. $my_variable will hold the value ‘default_value’ if no one called … Read more