Advertisement
salmancreation

Category Link

Dec 27th, 2015
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. Category Link
  2.  
  3. <?php
  4.     // Get the ID of a given category
  5.     $category_id = get_cat_ID( 'Category Name' );
  6.  
  7.     // Get the URL of this category
  8.     $category_link = get_category_link( $category_id );
  9. ?>
  10.  
  11. <!-- Print a link to this category -->
  12. <a href="<?php echo esc_url( $category_link ); ?>" title="Category Name">Category Name</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement