wp_targeted_link_rel

wp_targeted_link_rel

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_targeted_link_rel') is found 1 times:

  • /wp-includes/formatting.php line 3371
    3367
    3368
    3369
    3370
    3371
    3372
    3373
    3374
    3375
    3376
    *
     * @param string $rel       The rel values.
     * @param string $link_html The matched content of the link tag including all HTML attributes.
     */
    $rel = apply_filters( 'wp_targeted_link_rel', 'noopener', $link_html );
     
    // Return early if no rel values to be added or if no actual target attribute.
    if ( ! $rel || ! isset( $atts['target'] ) ) {
        return "<a $original_link_html>";
    }