美好的一天
我想编辑自定义链接(请参阅下面的链接)。
我想要做的是替换wordpress帖子的永久链接,并将其替换为自定义网址和最后的“标题”。标题将从[“标题”]
中获取<h2 class="featured-title"><a href="<?php echo esc_url($arr[$i]["permalink"]); ?>"><?php echo esc_html($arr[$i]["title"]); ?></a></h2>
所以这就像是:
h2 class="featured-title"><a href="<?php echo esc_url($arr[$i]["http://mysite.com/"title""]); ?>"><?php echo esc_html($arr[$i]["title"]); ?></a></h2>
我该怎么做?
谢谢
答案 0 :(得分:1)
我不确定你在找什么试试这个:
<h2 class="featured-title"><a href="http://mysite.com/categories/<?php echo strtolower(str_replace(" ","",$arr[$i]["title"])); ?>"><?php echo esc_html($arr[$i]["title"]); ?></a></h2>