Plugin Directory

Changeset 2765952


Ignore:
Timestamp:
08/03/2022 05:21:43 PM (3 years ago)
Author:
WaspThemes
Message:

Version 7.5.7

Location:
yellow-pencil-visual-theme-customizer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • yellow-pencil-visual-theme-customizer/trunk/readme.txt

    r2726039 r2765952  
    170170
    171171== Changelog ==
     172= 7.5.7 =
     173- Fixed: A PHP warning.
     174
    172175= 7.5.6 =
    173176- Added "align-content" property to Flex options.
  • yellow-pencil-visual-theme-customizer/trunk/yellow-pencil.php

    r2710812 r2765952  
    44Plugin URI: https://yellowpencil.waspthemes.com
    55Description: The most powerful visual CSS editor for WordPress. Customize any theme and page visually without coding.
    6 Version: 7.5.6
     6Version: 7.5.7
    77Author: WaspThemes
    88Author URI: https://yellowpencil.waspthemes.com
     
    6767
    6868// Define
    69 define('YP_VERSION', "7.5.6");
     69define('YP_VERSION', "7.5.7");
    7070
    7171// Admin Settings Page
     
    12071207
    12081208    global $wp_query;
    1209     if (isset($wp_query->queried_object)) {
     1209    if (isset($wp_query->queried_object->ID)) {
    12101210        $id = @$wp_query->queried_object->ID;
    12111211    } else {
     
    25282528    } elseif (isset($_GET['post']) && empty($_GET['post']) == false && is_admin() == true) {
    25292529        $page_id = intval($_GET['post']);
    2530     } elseif (isset($wp_query->queried_object)) {
     2530    } elseif (isset($wp_query->queried_object->ID)) {
    25312531        $page_id = @$wp_query->queried_object->ID;
    25322532    }
Note: See TracChangeset for help on using the changeset viewer.