PHP Warning: count(): Parameter must be an array or an object …
-
If you see this PHP Warning in your log files:
PHP Warning: count(): Parameter must be an array or an object that implements Countable in /yourdomainpath/wp-content/plugins/microkids-related-posts/microkids-related-posts.php on line 645
There is a simple fix. Edit the file yourself:
Replace this line #645
if( count( $post_type_related_posts ) ) {
with this line
if( $post_type_related_posts ) {
That should fix it. If course, if you have a problem, just undo your changes.
- The topic ‘PHP Warning: count(): Parameter must be an array or an object …’ is closed to new replies.