Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Header title tag for wp & buddypress pages

@mistercyril Don’t know exactly would it help with BP SEO – because don’t use it myself but… I suppose that using BP special tags for head section would make sense in this case. You can check them in bp-default theme.

In particular use following tags inside the <head> tag of header.php in your theme
<title><?php bp_page_title() ?></title> – to generate page title
<?php do_action( 'bp_head' ) ?> – hook to add some usefull BP head routine
<?php wp_head(); ?> – the standard WP header hook

Skip to toolbar