| 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/integ/seo/ |
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.' );
}
/*
* Integration module for the SEOPress plugin.
*
* See https://wordpress.org/plugins/wp-seopress/.
*/
if ( ! class_exists( 'WpssoIntegSeoSeopress' ) ) {
class WpssoIntegSeoSeopress {
private $p; // Wpsso class object.
public function __construct( &$plugin ) {
$this->p =& $plugin;
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
$this->p->util->add_plugin_filters( $this, array(
'primary_term_id' => 4,
'primary_terms' => 3,
'title_seed' => 5,
'description_seed' => 4,
'post_url' => 2,
'term_url' => 2,
'get_md_options' => 2,
), 100 );
if ( is_admin() ) {
add_filter( 'seopress_metabox_seo_tabs', array( $this, 'cleanup_seopress_tabs' ), 1000, 1 );
} else {
add_filter( 'seopress_titles_author', '__return_empty_string', 1000, 0 );
}
}
public function filter_primary_term_id( $primary_term_id, $mod, $tax_slug, $is_custom ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
if ( $is_custom ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->log( 'exiting early: $is_custom is true' );
}
return $primary_term_id;
} elseif ( empty( $mod[ 'is_post' ] ) || empty( $mod[ 'id' ] ) ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->log( 'exiting early: not post object or no post ID' );
}
return $primary_term_id;
} elseif ( empty( $tax_slug ) ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->log( 'exiting early: $tax_slug is empty' );
}
return $primary_term_id;
} else {
$meta_key = '_seopress_robots_primary_cat';
if ( $this->p->debug->enabled ) {
$this->p->debug->log( 'calling get_metadata() for ' . $meta_key );
}
if ( $ret = get_metadata( 'post', $mod[ 'id' ], $meta_key, $single = true ) ) {
return $ret;
}
}
return $primary_term_id;
}
public function filter_primary_terms( $primary_terms, $mod, $tax_slug ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
if ( $primary_term_id = $this->filter_primary_term_id( false, $mod, $tax_slug, $is_custom = false ) ) {
if ( empty( $primary_terms[ $primary_term_id ] ) ) {
$term_obj = get_term( $primary_term_id );
if ( isset( $term_obj->term_id ) ) { // Just in case.
$primary_terms[ $term_obj->term_id ] = $term_obj->name;
}
}
}
return $primary_terms;
}
public function filter_title_seed( $title_text, $mod, $num_hashtags, $md_key, $title_sep ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
return WpssoAbstractWpMeta::get_mod_meta( $mod, $meta_key = '_seopress_titles_title', $single = true );
}
public function filter_description_seed( $desc_text, $mod, $num_hashtags, $md_key ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
return WpssoAbstractWpMeta::get_mod_meta( $mod, $meta_key = '_seopress_titles_desc', $single = true );
}
public function filter_post_url( $url, $mod ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
$canonical = '';
if ( $mod[ 'id' ] ) {
$canonical = get_metadata( 'post', $mod[ 'id' ], $meta_key = '_seopress_robots_canonical', $single = true );
}
if ( ! empty( $canonical ) ) {
return $canonical;
}
return $url;
}
public function filter_term_url( $url, $mod ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
$canonical = '';
if ( $mod[ 'id' ] ) {
$canonical = get_metadata( 'term', $mod[ 'id' ], $meta_key = '_seopress_robots_canonical', $single = true );
}
if ( ! empty( $canonical ) ) {
return $canonical;
}
return $url;
}
public function filter_get_md_options( array $md_opts, array $mod ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
$md_meta_names = array(
'og_title' => '_seopress_social_fb_title',
'og_desc' => '_seopress_social_fb_desc',
'og_img_url' => '_seopress_social_fb_img',
'schema_title' => '_seopress_titles_title',
'schema_desc' => '_seopress_titles_desc',
'tc_title' => '_seopress_social_twitter_title',
'tc_desc' => '_seopress_social_twitter_desc',
'tc_sum_img_url' => '_seopress_social_twitter_img',
'tc_lrg_img_url' => '_seopress_social_twitter_img',
);
foreach( $md_meta_names as $opt_key => $meta_key ) {
/*
* Skip plugin options that already have a custom value.
*/
if ( ! empty( $md_opts[ $opt_key ] ) ) { // Not 0, false, or empty string.
continue;
}
$md_opts[ $opt_key ] = WpssoAbstractWpMeta::get_mod_meta( $mod, $meta_key, $single = true );
}
return $md_opts;
}
public function cleanup_seopress_tabs( $tabs ) {
unset( $tabs[ 'social-tab' ] );
return $tabs;
}
}
}