The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
wp_register_script ...
 
Share:
Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

Question [Solved] wp_register_script - wpdiscuz-combo-js - 'strategy' => 'defer' ?

2 Posts
2 Users
0 Reactions
563 Views
Posts: 1
 JDO
Topic starter
(@jdo)
New Member
Joined: 1 year ago

What is the reason that the wpdiscuz-combo-js is >not< registered  with 'strategy' => 'defer' (or at least configureable) ?

I had some problems with "ReferenceError: jQuery is not defined at wpdiscuz-combo.min.js?ver=7.6.19:8:1", which are solveable with using defer.

1 Reply
Asti
Posts: 8075
 Asti
Support
(@asti)
Illustrious Member
Joined: 8 years ago

Hi,

You can use the hook code below. It allows you to add the attributes you want to any js code: 

add_filter('script_loader_src', 'custom_script_loader_src', 10, 2);
function custom_script_loader_src($src, $handle) {
    if ($handle !== 'wpdiscuz-combo-js') {
        return $src;
    }
    return $src . "'&nbsp;defer";
}
Share: