Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
publishpress-authors
/
src
/
modules
/
seoframework-integration
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @package PublishPress Authors * @author PublishPress * * Copyright (C) 2018 PublishPress * * This file is part of PublishPress Authors * * PublishPress Authors is free software: you can redistribute it * and/or modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * PublishPress is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with PublishPress. If not, see <http://www.gnu.org/licenses/>. */ use MultipleAuthors\Classes\Legacy\Module; use MultipleAuthors\Classes\Objects\Author; use MultipleAuthors\Factory; use PublishPressAuthors\ElementorIntegration\Modules\Posts\Skins\PostsSkinCards; use PublishPressAuthors\ElementorIntegration\Modules\Posts\Skins\PostsSkinClassic; use PublishPressAuthors\ElementorIntegration\Modules\Posts\Skins\PostsSkinFullContent; use PublishPressAuthors\ElementorIntegration\Modules\ThemeBuilder\Skins\ArchivePostsSkinCards; use PublishPressAuthors\ElementorIntegration\Modules\ThemeBuilder\Skins\ArchivePostsSkinClassic; use PublishPressAuthors\ElementorIntegration\Modules\ThemeBuilder\Skins\ArchivePostsSkinFullContent; if (!class_exists('MA_Seoframework_Integration')) { /** * class MA_Seoframework_Integration */ class MA_Seoframework_Integration extends Module { public $module_name = 'seoframework_integration'; /** * Instance for the module * * @var stdClass */ public $module; public $module_url; /** * Construct the MA_Seoframework_Integration class */ public function __construct() { $this->module_url = $this->get_module_url(__FILE__); // Register the module with PublishPress $args = [ 'title' => __('The SEO Framework Integration', 'publishpress-authors'), 'short_description' => __( 'Add compatibility with The SEO Framework plugin.', 'publishpress-authors' ), 'module_url' => $this->module_url, 'icon_class' => 'dashicons dashicons-feedback', 'slug' => 'seoframework-integration', 'default_options' => [ 'enabled' => 'on', ], 'options_page' => false, 'autoload' => true, ]; // Apply a filter to the default options $args['default_options'] = apply_filters( 'pp_seoframeworkault_options', $args['default_options'] ); $this->module = Factory::getLegacyPlugin()->register_module($this->module_name, $args); parent::__construct(); } /** * Initialize the module. Conditionally loads if the module is enabled */ public function init() { add_filter('the_seo_framework_generated_archive_title_items', [$this, 'setArchiveTitle'], 10, 5); } /** * @since 5.0.0 * @param String[title,prefix,title_without_prefix] $items The generated archive title items. * @param \WP_Term|\WP_User|\WP_Post_Type|null $object The archive object. * Is null when query is autodetermined. * @param string $title_without_prefix Archive title without prefix. * @param string $prefix Archive title prefix. */ public function setArchiveTitle( $args, $term, $title, $title_without_prefix, $prefix ) { if (is_tax('author')) { $author = Author::get_by_term_id($term->term_id); if (is_a($author, Author::class) && $author->is_guest()) { $title = $author->display_name; $args = [ $prefix . ' ' . $title, $prefix, $title ]; } } elseif (is_author()) { $author_id = get_query_var('author'); if (!empty($author_id) && $author_id < 0) { $author_id = absint($author_id); $author = Author::get_by_term_id($author_id); if (is_a($author, Author::class) && $author->is_guest()) { $title = $author->display_name; $args = [ $prefix . ' ' . $title, $prefix, $title ]; } } } return $args; } } }