Changeset 3092261
- Timestamp:
- 05/24/2024 05:34:33 PM (23 months ago)
- Location:
- seo-landing-page-generator/trunk
- Files:
-
- 5 edited
-
includes/class-issslpg-landing-page.php (modified) (1 diff)
-
includes/class-issslpg-updater.php (modified) (1 diff)
-
includes/class-issslpg.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
seo-landing-page-generator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seo-landing-page-generator/trunk/includes/class-issslpg-landing-page.php
r3034586 r3092261 38 38 // $content = wpautop( $content ); 39 39 $content = do_shortcode( $content ); 40 41 // Render blocks 42 // Source: https://florianbrinkmann.com/en/display-specific-gutenberg-blocks-of-a-post-outside-of-the-post-content-in-the-theme-5620/ 43 // Source: https://wordpress.stackexchange.com/questions/323759/get-blocks-from-other-pages-from-within-current-page 44 // $blocks = parse_blocks( $content ); 45 // $content = ''; 46 // foreach ( $blocks as $block ) { 47 // $content .= render_block( $block ); 48 // } 40 49 41 50 // $template_page = new WP_Query( array( -
seo-landing-page-generator/trunk/includes/class-issslpg-updater.php
r2941018 r3092261 24 24 25 25 public function __construct() { 26 $plugin_version = get_ site_option( 'issslpg_version', 0 );26 $plugin_version = get_option( 'issslpg_version', 0 ); 27 27 28 28 // Set original installation version -
seo-landing-page-generator/trunk/includes/class-issslpg.php
r3034586 r3092261 208 208 $this->loader->add_action( 'cmb2_admin_init', $admin_plugin, 'register_cmb2_settings_page' ); 209 209 $this->loader->add_action( 'cmb2_admin_init', $admin_plugin, 'register_cmb2_custom_fields' ); 210 $this->loader->add_action( 'cmb2_save_field_company_phone', $admin_plugin, 'on_update_landing_page_title_format_options', 10, 3 );210 // $this->loader->add_action( 'cmb2_save_field_company_phone', $admin_plugin, 'on_update_landing_page_title_format_options', 10, 3 ); 211 211 $this->loader->add_action( 'cmb2_save_field_company_phone', $admin_plugin, 'on_update_landing_page_title_format_options', 10, 3 ); 212 212 $this->loader->add_action( 'cmb2_save_field_landing_page_throttle', $admin_plugin, 'on_update_landing_page_throttle', 10, 3 ); -
seo-landing-page-generator/trunk/readme.txt
r3034586 r3092261 5 5 Tested up to: 6.5.0 6 6 Requires PHP: 5.6 7 Stable tag: 1.6 5.17 Stable tag: 1.66.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html -
seo-landing-page-generator/trunk/seo-landing-page-generator.php
r3034586 r3092261 16 16 * Plugin URI: https://intellasoftplugins.com/ 17 17 * Description: Generate landing pages in bulk based on location with randomized content. Update thousands of landing pages in seconds. 18 * Version: 1.66. 118 * Version: 1.66.2 19 19 * Author: IntellaSoft Solutions 20 20 * Author URI: https://intellasoftplugins.com/ … … 41 41 * Rename this for your plugin and update it as you release new versions. 42 42 */ 43 define( 'ISSSLPG_VERSION', '1.66. 1' );43 define( 'ISSSLPG_VERSION', '1.66.2' ); 44 44 define( 'ISSSLPG_BASENAME', plugin_basename(__FILE__) ); 45 45
Note: See TracChangeset
for help on using the changeset viewer.