Skip to content

[update history] My WP Customize Admin/Frontend 1.25.2

Hello :),

WordPress Plugin “My WP Customize Admin/Frontend” updated to 1.25.2. 🙂

Update overview

  • Updated: Add a filter hook to debug times.

 

 

Updated: Add a filter hook to debug times.

If action hook time measurement was fixed to WordPress’s core hooks, you can now freely add hooks for time measurement using filter hooks.

After after_setup_theme and beyond.

 

add_filter( 'mywp_debug_times_action_items' , 'custom_mywp_debug_times_action_items );

function custom_mywp_debug_times_action_items ( $debug_times_actions_items ) {

  return $debug_times_actions_items;

}

This Post Has 0 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

Back To Top