Plugin Directory

Changeset 2412191


Ignore:
Timestamp:
11/04/2020 05:48:15 AM (5 years ago)
Author:
codeies
Message:

update

Location:
full-page-blog-designer
Files:
190 added
2 edited

Legend:

Unmodified
Added
Removed
  • full-page-blog-designer/trunk/README.txt

    r2411604 r2412191  
    55Requires at least: 4.0
    66Tested up to: 5.5
    7 Stable tag: 1.0
     7Stable tag: 1.1
    88Requires PHP: 5.4
    99License: GPLv2 or later
     
    5151== Changelog ==
    5252
     5304/11/2020
     54- Fixed few bugs , Integreated Freemius to improve development
     5504/10/2020
    5356- Initial Release
    5457
  • full-page-blog-designer/trunk/full-page-blog-designer.php

    r2411604 r2412191  
    1616 * Plugin Name:       Full Page Blog Designer
    1717 * Plugin URI:        https://codeies.com/wordpress-plugins/full-page-blog-designer/
    18  * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
    19  * Version:           1.0.0
     18 * Description:       This Plugin converts your website Blog Page to Full Page Horizontal Scroll layout
     19 * Version:           1.0.1
    2020 * Requires at least: 5.0
    21  * Author:            Codeies
     21 * Author:            Muhammad Junaid
    2222 * Author URI:        https://codeies.com/about/ceo
    2323 * License:           GPL-2.0+
     
    3030if ( ! defined( 'WPINC' ) ) {
    3131    die;
     32}
     33
     34if ( ! function_exists( 'fpbd_fs' ) ) {
     35    // Create a helper function for easy SDK access.
     36    function fpbd_fs() {
     37        global $fpbd_fs;
     38
     39        if ( ! isset( $fpbd_fs ) ) {
     40            // Include Freemius SDK.
     41            require_once dirname(__FILE__) . '/freemius/start.php';
     42
     43            $fpbd_fs = fs_dynamic_init( array(
     44                'id'                  => '7164',
     45                'slug'                => 'full-page-blog-designer',
     46                'type'                => 'plugin',
     47                'public_key'          => 'pk_8a8d051c66740455c0d671908c304',
     48                'is_premium'          => false,
     49                'has_addons'          => false,
     50                'has_paid_plans'      => false,
     51                'menu'                => array(
     52                    'first-path'     => 'plugins.php',
     53                    'account'        => false,
     54                    'support'        => false,
     55                ),
     56            ) );
     57        }
     58
     59        return $fpbd_fs;
     60    }
     61
     62    // Init Freemius.
     63    fpbd_fs();
     64    // Signal that SDK was initiated.
     65    do_action( 'fpbd_fs_loaded' );
    3266}
    3367
Note: See TracChangeset for help on using the changeset viewer.