Tagged Questions
8
votes
2answers
314 views
Conditionally enqueue a widget's script/stylesheet in HEAD (only when present on page!)
I've been trying to load scripts and styles for a WordPress widget with the following conditions...
The scripts MUST load in the HEAD (else they break).
The scripts must ONLY load when the widget ...
5
votes
4answers
1k views
dynamically add scripts to WP_Widget widget() method
I have a wordpress widget that has the standard outline like:
class my_widget extends WP_Widget{
function my_widget(){
//do setup stuff
}
function form(){
//do form stuff
}
function ...