How do I display the handle for all front-end enqueued scripts in plugin options page?
I use the following function in my plugin to display all the scripts handles in my plugin options page but it display only the handles of admin scripts:
function my_detected_scripts() {
global $wp_scripts;
foreach( $wp_scripts-queue as $handle ) :
echo $handle . ' br / ';
endforeach;
}
Then:
echo my_detected_scripts()
How can get the handles of all front-end enqueued scripts only?
Thanks in advance!
Topic scripts wp-enqueue-script Wordpress
Category Web