Skip to content

Instantly share code, notes, and snippets.

@lamberger
Created October 21, 2018 14:05
Show Gist options
  • Select an option

  • Save lamberger/1a33cac01f64f939caac0b6f8e846291 to your computer and use it in GitHub Desktop.

Select an option

Save lamberger/1a33cac01f64f939caac0b6f8e846291 to your computer and use it in GitHub Desktop.
Link to category name
<?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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment