EduardET

show category title

Feb 12th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. // /*----------- Category Title -----------------------*/
  2. add_shortcode( 'cat-title', 'wpc_category_title' );
  3.  
  4. function wpc_category_title(){
  5.     $output="";
  6.     $output .= '<h1 class="wpc-category-title">'.single_cat_title("", false).'</h1>';
  7.     return $output;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment