Commit realizado el 12:13:52 08-04-2024
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
<?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 '';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user