BP_RankMath_Title
BP_RankMath_Title Error.
Description
Source
File: bp-core/compatibility/bp-rankmath-plugin-helpers.php
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | class BP_RankMath_Title implements IPaper { /** * Retrieves the SEO title. * * @return string */ public function title() { if ( bp_is_user() ) { $title = get_user_meta( bp_displayed_user_id(), 'first_name' , true ); if ( empty ( $title )) { $title = get_user_meta( bp_displayed_user_id(), 'nickname' , true ); } } else { $title = isset( buddypress()->groups->current_group->name ) ? buddypress()->groups->current_group->name : __( 'Social Group' , 'buddyboss' ); } return $title . ' - ' . bp_get_site_name(); } /** * Retrieves the SEO description. * * @return string */ public function description() { return isset( buddypress()->groups->current_group->description ) ? buddypress()->groups->current_group->description : '' ; } /** * Retrieves the robots. * * @return string */ public function robots() { return array (); } /** * Retrieves the canonical URL. * * @return array */ public function canonical() { return array (); } /** * Retrieves meta keywords. * * @return string */ public function keywords() { return array (); } } |
Methods
- advanced_robots — Retrieves the Advanced Robots.
- canonical — Retrieves the canonical URL.
- description — Retrieves the SEO description.
- keywords — Retrieves meta keywords.
- robots — Retrieves the robots.
- title — Retrieves the SEO title.
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.