我正在使用流行的Discus插件。为了有效地使用此插件,他们advise 您需要将首页上的URL更改为以#disqus_thread
. 我知道如何在jQuery中轻松地做到这一点,但我想如果我只需编辑一个模板就可以了。
我发现链接生成于get_comments_link()
, 可在中找到wp-includes\\comment-template.php
.
function get_comments_link($post_id = 0) {
return apply_filters( \'get_comments_link\', get_permalink( $post_id ) . \'#comments\', $post_id );
}
但是,我该如何更改wp include文件中的某些内容呢?我可以在我的函数中进行编辑吗。php?如果是,怎么做?我知道如何“撤消”函数,
but how do you do that when they are not (seemingly) hooked to an action?