[Plugin: Customize Meta Widget] Arguments not extracted
-
The
wp_widget_meta_modified()
function does not extract $args into the local variable space. Consequently,$before_widget
,$before_title
, etc are empty variables. I discovered this when wondering why the appearance of the title didn’t match the other widgets.Adding this line fixed the problem:
extract($args);
- The topic ‘[Plugin: Customize Meta Widget] Arguments not extracted’ is closed to new replies.