The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Question [Solved] wp_register_script - wpdiscuz-combo-js - 'strategy' => 'defer' ?
(@jdo)
New Member
Joined: 2 years 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.
(@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 . "' defer";
}