How to know the change that a plugin made in Wordpress

0

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?

    
asked by anonymous 18.10.2018 / 22:21

1 answer

0

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.

    
18.10.2018 / 22:59