Plugin Directory

Changeset 3092261


Ignore:
Timestamp:
05/24/2024 05:34:33 PM (23 months ago)
Author:
intellasoftsolutions
Message:

Update to v1.66.2

Location:
seo-landing-page-generator/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • seo-landing-page-generator/trunk/includes/class-issslpg-landing-page.php

    r3034586 r3092261  
    3838//      $content = wpautop( $content );
    3939        $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//      }
    4049
    4150        // $template_page = new WP_Query( array(
  • seo-landing-page-generator/trunk/includes/class-issslpg-updater.php

    r2941018 r3092261  
    2424
    2525    public function __construct() {
    26         $plugin_version = get_site_option( 'issslpg_version', 0 );
     26        $plugin_version = get_option( 'issslpg_version', 0 );
    2727
    2828        // Set original installation version
  • seo-landing-page-generator/trunk/includes/class-issslpg.php

    r3034586 r3092261  
    208208        $this->loader->add_action( 'cmb2_admin_init', $admin_plugin, 'register_cmb2_settings_page'      );
    209209        $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 );
    211211        $this->loader->add_action( 'cmb2_save_field_company_phone',                  $admin_plugin, 'on_update_landing_page_title_format_options', 10, 3 );
    212212        $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  
    55Tested up to: 6.5.0
    66Requires PHP: 5.6
    7 Stable tag: 1.65.1
     7Stable tag: 1.66.2
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
  • seo-landing-page-generator/trunk/seo-landing-page-generator.php

    r3034586 r3092261  
    1616 * Plugin URI:        https://intellasoftplugins.com/
    1717 * Description:       Generate landing pages in bulk based on location with randomized content. Update thousands of landing pages in seconds.
    18  * Version:           1.66.1
     18 * Version:           1.66.2
    1919 * Author:            IntellaSoft Solutions
    2020 * Author URI:        https://intellasoftplugins.com/
     
    4141 * Rename this for your plugin and update it as you release new versions.
    4242 */
    43 define( 'ISSSLPG_VERSION', '1.66.1' );
     43define( 'ISSSLPG_VERSION', '1.66.2' );
    4444define( 'ISSSLPG_BASENAME', plugin_basename(__FILE__) );
    4545
Note: See TracChangeset for help on using the changeset viewer.