wp_comment_reply

wp_comment_reply

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-5.0.3

apply_filters('wp_comment_reply') is found 1 times:

  • /wp-admin/includes/template.php line 382
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    *
     * @param string $content The reply-to form content.
     * @param array  $args    An array of default args.
     */
    $content = apply_filters( 'wp_comment_reply', '', array( 'position' => $position, 'checkbox' => $checkbox, 'mode' => $mode ) );
     
    if ( ! empty($content) ) {
        echo $content;
        return;
    }