Guest User

Untitled

a guest
Apr 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. add_action('genesis_entry_header',
  2. function(){
  3.  
  4. if(!is_singular()){return;}//アーカイブにも対応させる場合は不要
  5.  
  6. //リンク不要な場合
  7. //$category = get_the_category();
  8. //$category = $category[0]->name;
  9.  
  10. //リンク付きの場合
  11. $category = do_shortcode('[post_categories before=""]');
  12.  
  13. echo '<span class="categoryName">' .$category. '</span>';
  14.  
  15. }, 9
  16. );
Add Comment
Please, Sign In to add comment