make_clickable_rel

make_clickable_rel

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('make_clickable_rel') is found 1 times:

  • /wp-includes/formatting.php line 3057
    	 *
    	 * @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;
    }