我正在开发一些ajax脚本并使用wordpress,我的问题是:有没有办法以某种方式从wordpress函数中提取注释url?我在循环中使用的函数看起来像这样:
<?php comments_popup_link('Discuss »', '1 Comment »', '% Comments »'); ?> <?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中是否存在某种功能或类似功能?
答案 0 :(得分:1)
<?php $comments_url = get_permalink() . '#respond'; ?>