Plugin Directory

Changeset 3477367


Ignore:
Timestamp:
03/08/2026 10:16:27 AM (3 weeks ago)
Author:
recorp
Message:

Added tag 6.0.5.8

Location:
export-wp-page-to-static-html/tags/6.0.5.8
Files:
10 copied

Legend:

Unmodified
Added
Removed
  • export-wp-page-to-static-html/tags/6.0.5.8/README.txt

    r3477356 r3477367  
    55Tested up to:       6.9
    66Requires PHP:       7.4
    7 Stable tag:         6.0.5.7
     7Stable tag:         6.0.5.8
    88License:            GPLv2 or later
    99License URI:        https://www.gnu.org/licenses/gpl-2.0.html
  • export-wp-page-to-static-html/tags/6.0.5.8/export-wp-page-to-static-html.php

    r3477356 r3477367  
    44 * Plugin URI:        https://myrecorp.com
    55 * Description:       Export WP Pages to Static HTML is the most flexible static HTML export plugin for WordPress. Unlike full-site generators, Export WP Pages to Static HTML gives you surgical control — export exactly the posts, pages, or custom post types you need, in the status you want, as the user role you choose.
    6  * Version:           6.0.5.7
     6 * Version:           6.0.5.8
    77 * Author:            ReCorp
    88 * Author URI:        https://www.upwork.com/fl/rayhan1
     
    2020    load_plugin_textdomain('wp-to-html', false, dirname(plugin_basename(__FILE__)) . '/languages');
    2121});
    22 define('WP_TO_HTML_VERSION', '6.0.5.7');
     22define('WP_TO_HTML_VERSION', '6.0.5.8');
    2323define('WP_TO_HTML_PATH', plugin_dir_path(__FILE__));
    2424define('WP_TO_HTML_URL', plugin_dir_url(__FILE__));
     
    440440add_action('wp_to_html_fetch_remote_data', 'wp_to_html_do_fetch_remote_data');
    441441function wp_to_html_do_fetch_remote_data(): void {
    442     $response = wp_remote_get('https://api.myrecorp.com/wp-to-html-plugins-data.php', [
     442    $response = wp_remote_get('https://api.myrecorp.com/wp-to-html-plugins-data.php?plugin=' . (defined('WP_TO_HTML_PRO_ACTIVE') ? 'pro' : 'free'), [
    443443        'timeout'    => 15,
    444444        'user-agent' => 'WpToHtml/' . WP_TO_HTML_VERSION . '; ' . home_url('/'),
  • export-wp-page-to-static-html/tags/6.0.5.8/includes/class-admin.php

    r3477356 r3477367  
    103103            'nonce'      => wp_create_nonce('wp_rest'),
    104104            'pro_active' => (function_exists('wp_to_html_is_pro_active') && wp_to_html_is_pro_active()) ? 1 : 0,
    105             'remote_json_url' => 'https://api.myrecorp.com/wp-to-html-plugins-data.php',
    106             'fallback_json_url' => WP_TO_HTML_URL . 'wp-to-html-plugins-data.php',
     105            'remote_json_url' => 'https://api.myrecorp.com/wp-to-html-plugins-data.php?plugin=' . (defined('WP_TO_HTML_PRO_ACTIVE') ? 'pro' : 'free'),
     106           
    107107            // External site export (Pro).
    108108            'ext_export_start_url'      => rest_url('wp_to_html/v1/ext-export/start'),
Note: See TracChangeset for help on using the changeset viewer.