PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
import
/
plugins
<?php /** * File with the class to handle data from Premium SEO Pack. * * @package WPSEO\Admin\Import\Plugins */ /** * Class with functionality to import & clean Premium SEO Pack post metadata. */ class WPSEO_Import_Premium_SEO_Pack extends WPSEO_Import_Squirrly { /** * The plugin name. * * @var string */ protected $plugin_name = 'Premium SEO Pack'; /** * WPSEO_Import_Premium_SEO_Pack constructor. */ public function __construct() { parent::__construct(); global $wpdb; $this->table_name = $wpdb->prefix . 'psp'; $this->meta_key = ''; } /** * Returns the query to return an identifier for the posts to import. * * @return string */ protected function retrieve_posts_query() { return "SELECT URL AS identifier FROM {$this->table_name} WHERE blog_id = %d"; } }
[-] class-import-platinum-seo-pack.php
[edit]
[-] class-import-aioseo.php
[edit]
[-] class-import-woothemes-seo.php
[edit]
[-] class-importers.php
[edit]
[+]
..
[-] class-import-greg-high-performance-seo.php
[edit]
[-] class-import-seopressor.php
[edit]
[-] class-import-premium-seo-pack.php
[edit]
[-] class-import-smartcrawl.php
[edit]
[-] class-import-headspace.php
[edit]
[-] class-import-ultimate-seo.php
[edit]
[-] class-import-aioseo-v4.php
[edit]
[-] class-import-jetpack.php
[edit]
[-] class-import-seo-framework.php
[edit]
[-] class-import-rankmath.php
[edit]
[-] class-abstract-plugin-importer.php
[edit]
[-] class-import-wp-meta-seo.php
[edit]
[-] class-import-wpseo.php
[edit]
[-] class-import-squirrly.php
[edit]