File: /home/flbestac/public_html/wp-content/plugins/wp-seopress/inc/admin/ajax/migrate/seo-ultimate.php
<?php
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
/*
* SEO Ultimate migration
*/
function seopress_seo_ultimate_migration() {
check_ajax_referer('seopress_seo_ultimate_migrate_nonce', '_ajax_nonce', true);
if (current_user_can(seopress_capability('manage_options', 'migration')) && is_admin()) {
if (isset($_POST['offset']) && isset($_POST['offset'])) {
$offset = absint($_POST['offset']);
}
global $wpdb;
$total_count_posts = (int) $wpdb->get_var("SELECT count(*) FROM {$wpdb->posts}");
$increment = 200;
global $post;
if ($offset > $total_count_posts) {
$offset = 'done';
wp_reset_postdata();
} else {
$args = [
'posts_per_page' => $increment,
'post_type' => 'any',
'post_status' => 'any',
'offset' => $offset,
];
$su_query = get_posts($args);
if ($su_query) {
foreach ($su_query as $post) {
if ('' != get_post_meta($post->ID, '_su_title', true)) { //Import title tag
update_post_meta($post->ID, '_seopress_titles_title', esc_html(get_post_meta($post->ID, '_su_title', true)));
}
if ('' != get_post_meta($post->ID, '_su_description', true)) { //Import meta desc
update_post_meta($post->ID, '_seopress_titles_desc', esc_html(get_post_meta($post->ID, '_su_description', true)));
}
if ('' != get_post_meta($post->ID, '_su_og_title', true)) { //Import Facebook Title
update_post_meta($post->ID, '_seopress_social_fb_title', esc_html(get_post_meta($post->ID, '_su_og_title', true)));
}
if ('' != get_post_meta($post->ID, '_su_og_description', true)) { //Import Facebook Desc
update_post_meta($post->ID, '_seopress_social_fb_desc', esc_html(get_post_meta($post->ID, '_su_og_description', true)));
}
if ('' != get_post_meta($post->ID, '_su_og_image', true)) { //Import Facebook Image
update_post_meta($post->ID, '_seopress_social_fb_img', esc_url(get_post_meta($post->ID, '_su_og_image', true)));
}
if ('1' == get_post_meta($post->ID, '_su_meta_robots_noindex', true)) { //Import Robots NoIndex
update_post_meta($post->ID, '_seopress_robots_index', 'yes');
}
if ('1' == get_post_meta($post->ID, '_su_meta_robots_nofollow', true)) { //Import Robots NoFollow
update_post_meta($post->ID, '_seopress_robots_follow', 'yes');
}
}
}
$offset += $increment;
}
$data = [];
$data['offset'] = $offset;
$data['total'] = $total_count_posts;
if ($offset >= $total_count_posts) {
$data['count'] = $total_count_posts;
} else {
$data['count'] = $offset;
}
wp_send_json_success($data);
exit();
}
}
add_action('wp_ajax_seopress_seo_ultimate_migration', 'seopress_seo_ultimate_migration');