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 Answer
Reset to default 1echo get_term_link( 'sound', 'campaigns' );
gave me the exact path that I need.
本文标签: URL path for wordpress categories
版权声明:本文标题:URL path for wordpress categories 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741928535a2405438.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
echo get_term_link( 'sound', 'campaigns' );
and look at the output. – gmazzap Commented Apr 23, 2014 at 22:02