Changeset 2765952
- Timestamp:
- 08/03/2022 05:21:43 PM (3 years ago)
- Location:
- yellow-pencil-visual-theme-customizer/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
yellow-pencil.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
yellow-pencil-visual-theme-customizer/trunk/readme.txt
r2726039 r2765952 170 170 171 171 == Changelog == 172 = 7.5.7 = 173 - Fixed: A PHP warning. 174 172 175 = 7.5.6 = 173 176 - Added "align-content" property to Flex options. -
yellow-pencil-visual-theme-customizer/trunk/yellow-pencil.php
r2710812 r2765952 4 4 Plugin URI: https://yellowpencil.waspthemes.com 5 5 Description: The most powerful visual CSS editor for WordPress. Customize any theme and page visually without coding. 6 Version: 7.5. 66 Version: 7.5.7 7 7 Author: WaspThemes 8 8 Author URI: https://yellowpencil.waspthemes.com … … 67 67 68 68 // Define 69 define('YP_VERSION', "7.5. 6");69 define('YP_VERSION', "7.5.7"); 70 70 71 71 // Admin Settings Page … … 1207 1207 1208 1208 global $wp_query; 1209 if (isset($wp_query->queried_object )) {1209 if (isset($wp_query->queried_object->ID)) { 1210 1210 $id = @$wp_query->queried_object->ID; 1211 1211 } else { … … 2528 2528 } elseif (isset($_GET['post']) && empty($_GET['post']) == false && is_admin() == true) { 2529 2529 $page_id = intval($_GET['post']); 2530 } elseif (isset($wp_query->queried_object )) {2530 } elseif (isset($wp_query->queried_object->ID)) { 2531 2531 $page_id = @$wp_query->queried_object->ID; 2532 2532 }
Note: See TracChangeset
for help on using the changeset viewer.