再会
我想编辑一个自定义链接(见下面的链接)。
我想做的是替换 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>
我该怎么做呢?
谢谢