我想自定义我的网址。
<a href="/2017/?post_type=issue_number"><?php the_title(); ?></a>
我希望2017年的网址为<?php the_title(); ?>
。
有人这样:
<a href="/<?php the_title(); ?>/?post_type=issue_number"><?php the_title(); ?></a>
有可能??
答案 0 :(得分:1)
<?php echo basename(get_permalink()); ?>
是更好的方法。这基本上输出了slug部分(不是整个URL)......这基本上就是标题。
答案 1 :(得分:0)
解决
使用此代码
<a href="/<?php echo the_title(); ?>/?post_type=issue_number" >
<?php the_title(); ?></a>