从wordpress函数中提取注释url

时间:2010-06-15 09:37:18

标签: wordpress

我正在开发一些ajax脚本并使用wordpress,我的问题是:有没有办法以某种方式从wordpress函数中提取注释url?我在循环中使用的函数看起来像这样:

<?php comments_popup_link('Discuss &#187;', '1 Comment &#187;', '% Comments &#187;'); ?> <?php edit_post_link('Edit', '| ', ''); ?>

它的HTML输出如下所示:

<a href="http://www.somepage.com/staging/2010/06/15/sadfasfregw/#respond" title="Comment on sadfasfregw"><span class="dsq-postid-17546">View Comments</span></a>| 
<a class="post-edit-link" href="http://www.somepage.com/staging/wp-admin/post.php?action=edit&post=17546" title="Edit post">Edit</a>

但是,我只对src(http://www.somepage.com/staging/2010/06/15/sadfasfregw/#respond)感兴趣。有没有办法从那里获得它,然后在以后的参考中使用它?在wordpress中是否存在某种功能或类似功能?

1 个答案:

答案 0 :(得分:1)

<?php $comments_url = get_permalink() . '#respond'; ?>