1

この関数を変更する必要があります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 );
}

これに

function get_comments_link($post_id = 0) {
    return apply_filters( 'get_comments_link', get_permalink( $post_id ) . '#disqusthread', $post_id );
}

しかし、「アクションフック」に接続されていないため、「元に戻す」または「上書き」する方法がわかりません。

4

1 に答える 1