| Server IP : 80.74.154.100 / Your IP : 216.73.217.0 Web Server : Apache System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : onlineadmin ( 10487) PHP Version : 8.5.7 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/httpd/vhosts/comeonline.ch/httpdocs/wp-content/plugins/wpsso/lib/ |
Upload File : |
<?php
/*
* License: GPLv3
* License URI: https://www.gnu.org/licenses/gpl.txt
* Copyright 2012-2026 Jean-Sebastien Morisset (https://wpsso.com/)
*/
if ( ! defined( 'ABSPATH' ) ) {
die( 'These aren\'t the droids you\'re looking for.' );
}
if ( ! defined( 'WPSSO_PLUGINDIR' ) ) {
die( 'Do. Or do not. There is no try.' );
}
if ( ! class_exists( 'WpssoMetaName' ) ) {
class WpssoMetaName {
private $p; // Wpsso class object.
public function __construct( &$plugin ) {
$this->p =& $plugin;
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
add_action( 'wp_head', array( $this, 'maybe_disable_noindex' ), -1000 );
}
public function maybe_disable_noindex() {
/*
* WpssoUtilRobots->is_disabled() returns true if:
*
* - An SEO plugin is active.
* - The 'add_meta_name_robots' option is unchecked.
* - The 'wpsso_robots_disabled' filter returns true.
*/
if ( ! $this->p->util->robots->is_disabled() ) {
remove_action( 'wp_head', 'noindex', 1 );
remove_action( 'wp_head', 'wp_robots', 1 );
}
}
/*
* Meta Name Tags.
*/
public function get_array( array $mod, array $mt_og = array(), $author_id = false ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
$mt_name = apply_filters( 'wpsso_meta_name_seed', array(), $mod );
/*
* Meta name "author".
*/
if ( ! empty( $this->p->options[ 'add_meta_name_author' ] ) ) {
if ( isset( $mt_og[ 'og:type' ] ) && 'article' === $mt_og[ 'og:type' ] ) {
$mt_name[ 'author' ] = $this->p->user->get_author_meta( $author_id, 'display_name' );
} elseif ( $this->p->debug->enabled ) {
$this->p->debug->log( 'skipped author meta tag - og:type is not an article' );
}
}
/*
* Meta name "description".
*
* WpssoUtil->is_seo_desc_disabled() returns true if:
*
* - An SEO plugin is active.
* - The 'add_meta_name_description' option is unchecked.
*/
if ( ! $this->p->util->is_seo_desc_disabled() ) {
$mt_name[ 'description' ] = $this->p->page->get_description( $mod, $md_key = 'seo_desc', $max_len = 'seo_desc' );
}
/*
* Meta name "thumbnail".
*/
if ( ! empty( $this->p->options[ 'add_meta_name_thumbnail' ] ) ) {
$mt_name[ 'thumbnail' ] = $this->p->media->get_thumbnail_url( 'wpsso-thumbnail', $mod, $md_pre = 'og' );
if ( empty( $mt_name[ 'thumbnail' ] ) ) {
unset( $mt_name[ 'thumbnail' ] );
}
}
/*
* Baidu, Google, Microsoft Bing, Pinterest, and Yandex website verification IDs.
*/
foreach ( WpssoConfig::$cf[ 'opt' ][ 'site_verify_meta_names' ] as $site_verify => $meta_name ) {
if ( ! empty( $this->p->options[ 'add_meta_name_' . $meta_name ] ) ) {
if ( ! empty( $this->p->options[ $site_verify ] ) ) {
$mt_name[ $meta_name ] = $this->p->options[ $site_verify ];
}
}
}
/*
* Meta name "robots".
*
* WpssoUtilRobots->is_disabled() returns true if:
*
* - An SEO plugin is active.
* - The 'add_meta_name_robots' option is unchecked.
* - The 'wpsso_robots_disabled' filter returns true.
*/
if ( ! $this->p->util->robots->is_disabled() ) {
$mt_name[ 'robots' ] = $this->p->util->robots->get_content( $mod );
}
return apply_filters( 'wpsso_meta_name', $mt_name, $mod );
}
}
}