php - Function to count and display the number of all subcategories in Wordpress -


i tried find function wordpress allows me count number of subcategories exist show it, far without success.

some help? in advance

if need number try this

$args = ['fields' => 'id=>parent', 'get' => 'all']; $categories = get_categories($args); $subcategories = array_filter($categories); echo "total subcategories: " . count($subcategories); 

Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -