Retrieve custom variable
The problem is that the $opt_val global variable is being set only when the my_plugin_options function is called. And that function is being called only in case user is viewing the My Plugin Options screen. You’ll have to call get_option( ‘mt_favorite_color’ ); inside the hook_css function. (Please note that the hook_css function is not being … Read more