aioseo_remove_reply_to_com

aioseo_remove_reply_to_com

Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.4.8.1.1

apply_filters('aioseo_remove_reply_to_com') is found 1 times:

  • /app/Common/Main/QueryArgs.php line 151
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    *
     * @return void
     */
    private function removeReplyToCom() {
        if ( ! apply_filters( 'aioseo_remove_reply_to_com', true ) ) {
            return;
        }
     
        add_filter( 'comment_reply_link', [ $this, 'removeReplyToComLink' ] );
        add_action( 'template_redirect', [ $this, 'replyToComRedirect' ], 1 );
    }