How to count the number of archives there are
Notes: Currently you’re echo-ing the output of wp_get_archives(). In order to return it, we must set the echo input parameter to false. You’re assuming the output of wp_get_archives() is an array, but it’s a string. Workaround: Here’s one way, by counting the <li> instances, with the html format: $args = [ ‘parent’ => 0, ‘hide_empty’ … Read more