unique;
$nonce = wp_create_nonce( 'spf_backup_nonce' );
$export = add_query_arg(
array(
'action' => 'spf-export',
'export' => $unique,
'nonce' => $nonce,
),
admin_url( 'admin-ajax.php' )
);
echo wp_kses_post( $this->field_before() );
echo '';
echo '';
echo '( ' . esc_html__( 'copy-paste your backup string here', 'smart-post-show' ) . ' )';
echo '
';
echo '';
echo '' . esc_html__( 'Export and Download Backup', 'smart-post-show' ) . '';
echo '
';
echo '';
echo '' . esc_html__( 'Please be sure for reset all of options.', 'smart-post-show' ) . '';
echo wp_kses_post( $this->field_after() );
}
}
}