wp_rel_ugc( string $text ): string

In this article

Adds rel="nofollow ugc" string to all HTML A elements in content.

Parameters

$textstringrequired
Content that may contain HTML A elements.

Return

string Converted content.

Source

function wp_rel_ugc( $text ) {	// This is a pre-save filter, so text is already escaped.	$text = stripslashes( $text );	$text = preg_replace_callback(	'|<a (.+?)>|i',	static function ( $matches ) {	return wp_rel_callback( $matches, 'nofollow ugc' );	},	$text	);	return wp_slash( $text ); } 

Changelog

VersionDescription
5.3.0Introduced.

User Contributed Notes

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