Created
June 20, 2015 19:08
-
-
Save pablocattaneo/ff3024818c1e3966fd55 to your computer and use it in GitHub Desktop.
Devuelve el link al template que muestra todos los post de una categoría
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