????
Current Path : /home2/sarkar82/public_html/wp-content/plugins/siteseo/main/admin/ajax-migrate/ |
Current File : /home2/sarkar82/public_html/wp-content/plugins/siteseo/main/admin/ajax-migrate/wp-meta-seo.php |
<?php /* * SiteSEO * https://siteseo.io/ * (c) SiteSEO Team <support@siteseo.io> */ /* Copyright 2016 - 2024 - Benjamin Denis (email : contact@seopress.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program 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 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)'); /////////////////////////////////////////////////////////////////////////////////////////////////// /* WP Meta SEO migration * @since 3.8.2 * @author Softaculous */ /////////////////////////////////////////////////////////////////////////////////////////////////// function siteseo_wp_meta_seo_migration() { siteseo_check_ajax_referer('siteseo_meta_seo_migrate_nonce'); if (current_user_can(siteseo_capability('manage_options', 'migration')) && is_admin()) { if (isset($_POST['offset']) && isset($_POST['offset'])) { $offset = absint(siteseo_opt_post('offset')); } global $wpdb; $total_count_posts = (int) $wpdb->get_var("SELECT count(*) FROM {$wpdb->posts}"); $total_count_terms = (int) $wpdb->get_var("SELECT count(*) FROM {$wpdb->terms}"); $increment = 200; global $post; if ($offset > $total_count_posts) { wp_reset_query(); $count_items = $total_count_posts; $args = [ 'hide_empty' => false, 'fields' => 'ids', ]; $wp_meta_seo_query_terms = get_terms($args); if ($wp_meta_seo_query_terms) { foreach ($wp_meta_seo_query_terms as $term_id) { if ('' != get_term_meta($term_id, 'wpms_category_metatitle', true)) { //Import title tag update_term_meta($term_id, '_siteseo_titles_title', get_term_meta($term_id, 'wpms_category_metatitle', true)); } if ('' != get_term_meta($term_id, 'wpms_category_metadesc', true)) { //Import title desc update_term_meta($term_id, '_siteseo_titles_desc', get_term_meta($term_id, 'wpms_category_metadesc', true)); } } } $offset = 'done'; wp_reset_query(); } else { $args = [ 'posts_per_page' => $increment, 'post_type' => 'any', 'post_status' => 'any', 'offset' => $offset, ]; $wp_meta_seo_query = get_posts($args); if ($wp_meta_seo_query) { foreach ($wp_meta_seo_query as $post) { if ('' != get_post_meta($post->ID, '_metaseo_metatitle', true)) { //Import title tag update_post_meta($post->ID, '_siteseo_titles_title', get_post_meta($post->ID, '_metaseo_metatitle', true)); } if ('' != get_post_meta($post->ID, '_metaseo_metadesc', true)) { //Import meta desc update_post_meta($post->ID, '_siteseo_titles_desc', get_post_meta($post->ID, '_metaseo_metadesc', true)); } if ('' != get_post_meta($post->ID, '_metaseo_metaopengraph-title', true)) { //Import Facebook Title update_post_meta($post->ID, '_siteseo_social_fb_title', get_post_meta($post->ID, '_metaseo_metaopengraph-title', true)); } if ('' != get_post_meta($post->ID, '_metaseo_metaopengraph-desc', true)) { //Import Facebook Desc update_post_meta($post->ID, '_siteseo_social_fb_desc', get_post_meta($post->ID, '_metaseo_metaopengraph-desc', true)); } if ('' != get_post_meta($post->ID, '_metaseo_metaopengraph-image', true)) { //Import Facebook Image update_post_meta($post->ID, '_siteseo_social_fb_img', get_post_meta($post->ID, '_metaseo_metaopengraph-image', true)); } if ('' != get_post_meta($post->ID, '_metaseo_metatwitter-title', true)) { //Import Twitter Title update_post_meta($post->ID, '_siteseo_social_twitter_title', get_post_meta($post->ID, '_metaseo_metatwitter-title', true)); } if ('' != get_post_meta($post->ID, '_metaseo_metatwitter-desc', true)) { //Import Twitter Desc update_post_meta($post->ID, '_siteseo_social_twitter_desc', get_post_meta($post->ID, '_metaseo_metatwitter-desc', true)); } if ('' != get_post_meta($post->ID, '_metaseo_metatwitter-image', true)) { //Import Twitter Image update_post_meta($post->ID, '_siteseo_social_twitter_img', get_post_meta($post->ID, '_metaseo_metatwitter-image', true)); } } } $offset += $increment; if ($offset >= $total_count_posts) { $count_items = $total_count_posts; } else { $count_items = $offset; } } $data = []; $data['count'] = $count_items; $data['total'] = $total_count_posts + $total_count_terms; $data['offset'] = $offset; wp_send_json_success($data); exit(); } } add_action('wp_ajax_siteseo_wp_meta_seo_migration', 'siteseo_wp_meta_seo_migration');