admin管理员组

文章数量:1313598

If I have a file called category-sound.php which corresponds to a category in a taxonomy called campaigns for a custom post type called awareness campaigns. what is the url path for this page?

website/sound ?

website/campaign/sound ?

If I have a file called category-sound.php which corresponds to a category in a taxonomy called campaigns for a custom post type called awareness campaigns. what is the url path for this page?

website/sound ?

website/campaign/sound ?

Share Improve this question asked Apr 23, 2014 at 21:48 campatskycampatsky 1757 bronze badges 1
  • 1 It depends on how you registered the taxonomy, in particular on 'rewrite' and 'with_front' arguments and which is your permalink structure. Put somewhere echo get_term_link( 'sound', 'campaigns' ); and look at the output. – gmazzap Commented Apr 23, 2014 at 22:02
Add a comment  | 

1 Answer 1

Reset to default 1

echo get_term_link( 'sound', 'campaigns' ); gave me the exact path that I need.

本文标签: URL path for wordpress categories