📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 23:33:19
📂
/ (Root)
/
home
/
apkbfjox
/
x03bet.cloud
/
wp-content
/
plugins
/
seo-by-rank-math
/
includes
/
modules
/
buddypress
/
paper
📍 /home/apkbfjox/x03bet.cloud/wp-content/plugins/seo-by-rank-math/includes/modules/buddypress/paper
🔄 Refresh
✏️
Editing: class-bp-group.php
Writable
<?php /** * The BuddyPress group class for the BuddyPress module. * * @since 1.0.32 * @package RankMath * @subpackage RankMath\Paper * @author Rank Math <support@rankmath.com> */ namespace RankMath\Paper; use RankMath\Helper; defined( 'ABSPATH' ) || exit; /** * BP_Group class. */ class BP_Group implements IPaper { /** * Retrieves the SEO title. * * @return string */ public function title() { return Paper::get_from_options( 'bp_group_title' ); } /** * Retrieves the SEO description. * * @return string */ public function description() { return Paper::get_from_options( 'bp_group_description' ); } /** * Retrieves the robots meta value. * * @return string */ public function robots() { $robots = []; if ( Helper::get_settings( 'titles.bp_group_custom_robots' ) ) { $robots = Helper::get_settings( 'titles.bp_group_robots' ); } return Paper::robots_combine( $robots, true ); } /** * Retrieves the advanced robots meta values. * * @return array The advanced robots meta values for the group. */ public function advanced_robots() { $robots = []; if ( Helper::get_settings( 'titles.bp_group_custom_robots' ) ) { $robots = Helper::get_settings( 'titles.bp_group_advanced_robots' ); } return Paper::advanced_robots_combine( $robots, true ); } /** * Retrieves the default canonical URL. * * @return array */ public function canonical() { return ''; } /** * Retrieves the default meta keywords. * * @return string */ public function keywords() { return ''; } }
💾 Save Changes
❌ Cancel