Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wordpress get category link

Tags:

php

wordpress

I want to ask on how to get the link of each category that have related post on it. I only got some code that will only display parent category. Any help would be much appreciated. Thanks!

<?php

$categories = get_categories();

foreach ($categories as $cat){
   if($cat->parent < 1){
      echo $cat->cat_name ;
   }
}

?>

like image 531
Boy Pasmo Avatar asked Nov 30 '22 22:11

Boy Pasmo


2 Answers

Sounds like you may want get_category_link - something like:

$categories = get_categories();
foreach ($categories as $cat) {
    $category_link = get_category_link($cat->cat_ID);
    echo '<a href="' . esc_url($category_link) . '" title="' . esc_attr($cat->name) . '">' . esc_html($cat->name) . '</a>';
}

should print out the links to the categories for you.

like image 54
anotherthink Avatar answered Dec 23 '22 05:12

anotherthink


According to Function Reference/get category link

<?php get_category_link( $category_id ); ?> 

Example:

<?php
// Get the ID of a given category
$category_id = get_cat_ID( 'Category Name' );

// Get the URL of this category
$category_link = get_category_link( $category_id );
?>

<!-- Print a link to this category -->
<a href="<?php echo esc_url( $category_link ); ?>" title="Category Name">Category Name</a>
like image 36
Irfan DANISH Avatar answered Dec 23 '22 05:12

Irfan DANISH