Changeset 3477370
- Timestamp:
- 03/08/2026 10:22:59 AM (3 weeks ago)
- Location:
- export-wp-page-to-static-html
- Files:
-
- 1 added
- 3 edited
-
assets/screenshot-2.png (added)
-
trunk/README.txt (modified) (1 diff)
-
trunk/export-wp-page-to-static-html.php (modified) (3 diffs)
-
trunk/includes/class-admin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
export-wp-page-to-static-html/trunk/README.txt
r3477356 r3477370 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 6.0.5. 77 Stable tag: 6.0.5.8 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
export-wp-page-to-static-html/trunk/export-wp-page-to-static-html.php
r3477356 r3477370 4 4 * Plugin URI: https://myrecorp.com 5 5 * 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. 76 * Version: 6.0.5.8 7 7 * Author: ReCorp 8 8 * Author URI: https://www.upwork.com/fl/rayhan1 … … 20 20 load_plugin_textdomain('wp-to-html', false, dirname(plugin_basename(__FILE__)) . '/languages'); 21 21 }); 22 define('WP_TO_HTML_VERSION', '6.0.5. 7');22 define('WP_TO_HTML_VERSION', '6.0.5.8'); 23 23 define('WP_TO_HTML_PATH', plugin_dir_path(__FILE__)); 24 24 define('WP_TO_HTML_URL', plugin_dir_url(__FILE__)); … … 440 440 add_action('wp_to_html_fetch_remote_data', 'wp_to_html_do_fetch_remote_data'); 441 441 function 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'), [ 443 443 'timeout' => 15, 444 444 'user-agent' => 'WpToHtml/' . WP_TO_HTML_VERSION . '; ' . home_url('/'), -
export-wp-page-to-static-html/trunk/includes/class-admin.php
r3477356 r3477370 103 103 'nonce' => wp_create_nonce('wp_rest'), 104 104 '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 107 107 // External site export (Pro). 108 108 'ext_export_start_url' => rest_url('wp_to_html/v1/ext-export/start'),
Note: See TracChangeset
for help on using the changeset viewer.