Changeset 3477367
- Timestamp:
- 03/08/2026 10:16:27 AM (3 weeks ago)
- Location:
- export-wp-page-to-static-html/tags/6.0.5.8
- Files:
-
- 10 copied
-
. (copied) (copied from export-wp-page-to-static-html/trunk)
-
LICENSE.txt (copied) (copied from export-wp-page-to-static-html/trunk/LICENSE.txt)
-
README.txt (copied) (copied from export-wp-page-to-static-html/trunk/README.txt) (1 diff)
-
assets/admin.css (copied) (copied from export-wp-page-to-static-html/trunk/assets/admin.css)
-
assets/admin.js (copied) (copied from export-wp-page-to-static-html/trunk/assets/admin.js)
-
export-wp-page-to-static-html.php (copied) (copied from export-wp-page-to-static-html/trunk/export-wp-page-to-static-html.php) (3 diffs)
-
includes/class-admin.php (copied) (copied from export-wp-page-to-static-html/trunk/includes/class-admin.php) (1 diff)
-
includes/class-core.php (copied) (copied from export-wp-page-to-static-html/trunk/includes/class-core.php)
-
includes/class-quick-export.php (copied) (copied from export-wp-page-to-static-html/trunk/includes/class-quick-export.php)
-
includes/class-rest.php (copied) (copied from export-wp-page-to-static-html/trunk/includes/class-rest.php)
Legend:
- Unmodified
- Added
- Removed
-
export-wp-page-to-static-html/tags/6.0.5.8/README.txt
r3477356 r3477367 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/tags/6.0.5.8/export-wp-page-to-static-html.php
r3477356 r3477367 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/tags/6.0.5.8/includes/class-admin.php
r3477356 r3477367 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.