Remove Page Title

For RTMedia with Buddypress, how do I remove the page title/ title tag?

I don’t want the following to show in page title anymore:
Author Name | Media | Profile | Website Name

Thanks,
-Tom

Hi,

You can achieve the same by adding following code in your theme's functions.php file add_filter ( 'wp_title', 'modify_media_page_title_rtm', 999999 ); function modify_media_page_title_rtm(){ return ''; }

Alternatively, you can also specify whatever the title you want. Just replace your content with quotes(''). ex. "return 'Media page'"