Good afternoon,
I had a problem with a menu in my Wordpress, and I solved it using a plugin. I would like to know how the plugin solved my problem in code issues, is there any way to see the changes that the plugin made?
Good afternoon,
I had a problem with a menu in my Wordpress, and I solved it using a plugin. I would like to know how the plugin solved my problem in code issues, is there any way to see the changes that the plugin made?
The answer is in your plugin. If it does: "Insert background color to menu items" and you want to know how it puts that color, you have to understand about:
add_action( 'wp_head'...
, add_filter('...
, add_action('customize_register...
, add_action('admin_head...
. These plugins, which you're talking about, usually only access the core of wordpress and make their changes, according to thema or not.