We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Filters the rel attribute for ActivityPub links.
/** * Filters the rel attribute for ActivityPub links. * * @param string $string * @return string The filtered value. */ function my_activitypub_link_rel_callback( string string ) { // Your code here. return string; } add_filter( 'activitypub_link_rel', 'my_activitypub_link_rel_callback' );
string
$nofollow_noopener_noreferrer
apply_filters( 'activitypub_link_rel', 'nofollow noopener noreferrer' )
← All Hooks