Site logo

Archived topic

How to use Elements to Insert noindex meta tag to bbPress User Profile Page head

1 reply · Started by Py on January 26, 2020

Viewing posts 1–2 of 2

Hi there,

Don't think it's possible in Elements, but you can use a function:

add_action( 'wp_head', function() {
    if ( function_exists( 'bbp_is_single_user_profile' ) && bbp_is_single_user_profile() ) {
        echo '<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW" />';
    }
} );

Hope this helps :)

This archived topic is closed to new replies.