Warning: This function has been deprecated. Use wp_rel_callback() instead.

wp_rel_nofollow_callback( array $matches )

Callback to add rel="nofollow" string to HTML A element.


Description Description


Parameters Parameters

$matches

(array) (Required) Single match.


Top ↑

Return Return

(string) HTML A Element with rel="nofollow".


Top ↑

Source Source

File: wp-includes/formatting.php

function wp_rel_nofollow_callback( $matches ) {
	return wp_rel_callback( $matches, 'nofollow' );
}

Top ↑

Changelog Changelog

Changelog
Version Description
5.3.0 Use wp_rel_callback()
2.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.