| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/ipprint/wp-content/plugins/surerank/inc/frontend/ |
Upload File : |
<?php
/**
* Common Meta Data
*
* This file will handle functionality to print meta_data in frontend for different requests.
*
* @package surerank
* @since 0.0.1
*/
namespace SureRank\Inc\Frontend;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
use SureRank\Inc\Functions\Settings;
use SureRank\Inc\Functions\Validate;
use SureRank\Inc\Functions\Variables;
use SureRank\Inc\Traits\Get_Instance;
use SureRank\Inc\Traits\Reset_Meta_Data;
/**
* Single Page SEO
* This class will handle functionality to print meta_data in frontend for different requests.
*
* @since 1.0.0
*/
class Single {
use Get_Instance;
use Reset_Meta_Data;
/**
* Meta Data
*
* @var array<string, mixed>|null $meta_data Post meta data.
* @since 1.0.0
*/
private $meta_data = null;
/**
* Constructor
*
* @since 1.0.0
*/
public function __construct() {
add_filter( 'surerank_set_meta', [ $this, 'get_meta_data' ], 1 );
$this->register_meta_reset();
}
/**
* Add meta data
*
* @param array<string, mixed> $meta_data Meta Data.
* @since 1.0.0
* @return array<string, mixed> $meta_data
*/
public function get_meta_data( $meta_data ) {
if ( ! is_singular() ) {
return $meta_data;
}
$post_id = get_the_ID();
if ( empty( $post_id ) ) {
return $meta_data;
}
if ( null !== $this->meta_data ) {
return $meta_data;
}
$post_type = get_post_type( $post_id ) ? get_post_type( $post_id ) : '';
$this->meta_data = Variables::replace( Validate::array( Settings::prep_post_meta( intval( $post_id ), $post_type, false ) ), intval( $post_id ) );
return $this->meta_data;
}
}