WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
2847 |
|
2848 | /** |
2849 | * Filters the rel value that is added to URL matches converted to links. |
2850 | * |
2851 | * @since 5.3.0 |
2852 | * |
2853 | * @param string $rel The rel value. |
2854 | * @param string $url The matched URL being converted to a link tag. |
2855 | */ |
2856 | $rel = apply_filters( 'make_clickable_rel', $rel, $url ); |
2857 | $rel = esc_attr( $rel ); |
2858 |
|
2859 | return $matches[1] . "<a href=\"$url\" rel=\"$rel\">$url</a>" . $suffix; |
2860 | } |
2861 |
|
2862 | /** |
2863 | * Callback to convert URL match to HTML A element. |
2864 | * |
2865 | * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable(). |
Line | Code |
2887 | } |
2888 |
|
2889 | if ( 'comment_text' === current_filter() ) { |
2890 | $rel = 'nofollow ugc'; |
2891 | } else { |
2892 | $rel = 'nofollow'; |
2893 | } |
2894 |
|
2895 | /** This filter is documented in wp-includes/formatting.php */ |
2896 | $rel = apply_filters( 'make_clickable_rel', $rel, $dest ); |
2897 | $rel = esc_attr( $rel ); |
2898 |
|
2899 | return $matches[1] . "<a href=\"$dest\" rel=\"$rel\">$dest</a>$ret"; |
2900 | } |
2901 |
|
2902 | /** |
2903 | * Callback to convert email address match to HTML A element. |
2904 | * |
2905 | * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable(). |