Widget post classes bug
-
In the
list_item()
method inwidget.php
, the glue parameter is not specified, so this causes the array of post classes to be combined into a string without spaces.This change fixes the issue:
$post_class = implode(' ', get_post_class());
- The topic ‘Widget post classes bug’ is closed to new replies.