Bug in related-posts.php causing count() warning
-
For info: line 167 of related-posts.php was causing a warning:
count(): Parameter must be an array or an object that implements CountableThe fix was to change line 167 from:
if ( count( $these_tags ) > 0 && count( $these_tags >= 2 ) ) {
to:
if ( count( $these_tags ) > 0 && count( $these_tags ) >= 2 ) {
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Bug in related-posts.php causing count() warning’ is closed to new replies.