我是wordpress的新手并坚持使用以下代码:
div class="hd-box-wrap">
h2> a href=" ?php the_permalink();?>">?php the_title();?></a>/h2>
现在假设这个超链接给我一个值
www.google.com/ankit
但是我需要我的页面去
www.google.com/ankit1
我试过了
div class="hd-box-wrap">
h2> a href=" ?php the_permalink();?1>">?php the_title();?></a>/h2>
但我无法找到休息。没有错误&#34;&lt;&#34;我已经因为stackoverflow中的问题而删除了。
答案 0 :(得分:0)
使用substr_replace()函数将最后一个字符从/更改为1 像这样:
a href=" <?php substr_replace(the_permalink(), "1", -1); ?>"
答案 1 :(得分:0)
试试这样:
<div class="hd-box-wrap">
<h2>
<a href="<?php the_permalink();?>1"><?php the_title();?></a>
</h2>
</div>