Skip to content

Instantly share code, notes, and snippets.

@saltun
Created October 26, 2014 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saltun/d2c52efb95f8d94093c2 to your computer and use it in GitHub Desktop.
Save saltun/d2c52efb95f8d94093c2 to your computer and use it in GitHub Desktop.
WordPress Category and Post Count
<?php
$args=array(
'include' => 1, // kategori id si gelecek - Category id
'orderby' => 'name',
'order' => 'ASC'
);
$categories=get_categories($args);
foreach($categories as $category) {
echo $category->name." (".$category->count.")"; // Genel (1)
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment