jmccole83
8/20/2019 - 11:40 AM

WordPress | Get all categories

public function category_terms()
{
  $terms = get_categories();

  return $terms;
}
@foreach($category_terms as $term) <a href="{!! get_term_link($term->term_id) !!}">{!! $term->name !!}</a> @endforeach