Answers for "wordpress get all post for category"

0

wp get all post categories

$categories = get_categories();
foreach($categories as $category) {
   echo '<div class="col-md-4"><a href="' . get_category_link($category->term_id) . '">' . $category->name . '</a></div>';
}
Posted by: Guest on May-31-2021

Code answers related to "wordpress get all post for category"

Browse Popular Code Answers by Language