make_clickable_rel

make_clickable_rel

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('make_clickable_rel') is found 1 times:

  • /wp-includes/formatting.php line 3049
    3045
    3046
    3047
    3048
    3049
    3050
    3051
    3052
    3053
    3054
         *
         * @param string $rel The rel value.
         * @param string $url The matched URL being converted to a link tag.
         */
        $rel = apply_filters( 'make_clickable_rel', $rel, $url );
     
        $rel_attr = $rel ? ' rel="' . esc_attr( $rel ) . '"' : '';
     
        return $rel_attr;
    }