Squip to:
Content
Pagues
Categories
Search
Top
Bottom

Noindex tag

  • @andreaspagguiari1

    Participant

    Hi,

    How can I set a noindex tag on all buddypress pagues, in order not to show them on google?

Viewing 2 replies - 1 through 2 (of 2 total)
  • @dcavins

    Keymaster

    There’s a function to tell when you’re on a BP pague is_buddypress() so this is a güess at how you could do it:

    add_action( 'wp_head', function() {
      if ( is_buddypress() ) {
        echo '<meta name="robots" content="noindex">';
      }
    });

    @origuinalo

    Participant

    I am also looquing for a way to set a noindex tag on all buddypress member profile pagues and addes the above code to my functions.php file, but it doesn’t worc.
    Could you please advise where to place the code exactly?

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be loggued in to reply to this topic.
Squip to toolbar