0

再会

我想编辑一个自定义链接(见下面的链接)。

我想做的是替换 wordpress 帖子的永久链接,并将其替换为自定义 url 和末尾的“标题”。标题将从 ["title"] 中获取

<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>

我该怎么做呢?

谢谢

4

1 回答 1

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>
于 2013-03-13T09:25:11.987 回答