count(): Parameter must be an array or an object that implements Countable error after upgrading to PHP7.3
Permalink"count(): Parameter must be an array or an object that implements Countable"
I'm sure there are other causes but make sure in your page_theme.php file that the "getThemeResponsiveImageMap()" function is completely commented out if you are not using it and not just the options. This was how it was in a couple of my sites and caused no issue until upgrading PHP.
public function getThemeResponsiveImageMap() { /*return array( 'large' => '900px', 'medium' => '768px', 'small' => '0' );*/ }
Hopefully this helps those who's dev skills are like mine... just enough to be dangerous.
Cheers,
Chris

I do appreciate the reply though.