将#id添加到the_permalink()

时间:2015-06-02 21:13:34

标签: php wordpress anchor

我似乎无法弄清楚这个代码。我目前在我孩子主题的functions.php中。

我试图将图片链接到帖子的评论部分。我已经有一个链接到帖子本身的按钮。

代码看起来像

form(html: { multipart: true }) do |f|
 f.inputs "Bs" do
   f.input :latitude, as: :hidden
   f.input :longitude, as: :hidden
   f.input :name
   f.input :picture, as: :file
 end
   f.actions
end

当我尝试它时,它只是没有显示出来。如果我使用<a href="<?php the_permalink(); #reply-title ?>"> <img src="http://trueidconference.com/wowministriesblogs/wp-content/images/JOINimg.png" alt="Mountain View" style="margin-left:12px;"></a> 它会显示,但当然不会链接到帖子,然后链接到ID。

我尝试了不同的变化,甚至使用echo来使其工作。

但我似乎无法弄清楚如何将#reply-title添加到当前永久链接中。

它在functions.php中的原因是因为我需要将此链接添加到每个帖子的底部。

2 个答案:

答案 0 :(得分:1)

尝试:

(?<=subpat1|subpat2|subpat3)

答案 1 :(得分:0)

如果我理解正确,你需要这个:

<a href="<?php the_permalink(); ?>/#reply-title">
<img src="http://trueidconference.com/wowministriesblogs/wp-content/images/JOINimg.png" alt="Mountain View" style="margin-left:12px;">
</a>