Answers for "find all post categories in wordpress"

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 "find all post categories in wordpress"

Browse Popular Code Answers by Language