Created
April 6, 2017 04:06
-
-
Save awakekat/72c1e281e9fe9556d6ce9317fa2c0be5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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