Changeset 3397377
- Timestamp:
- 11/17/2025 04:01:43 PM (5 months ago)
- Location:
- cinza-grid
- Files:
-
- 27 added
- 3 edited
-
tags/1.2.3 (added)
-
tags/1.2.3/assets (added)
-
tags/1.2.3/assets/css (added)
-
tags/1.2.3/assets/css/animate.min.css (added)
-
tags/1.2.3/assets/css/backend-admin.css (added)
-
tags/1.2.3/assets/css/backend-dashicon.css (added)
-
tags/1.2.3/assets/css/backend-style.css (added)
-
tags/1.2.3/assets/css/frontend-style.css (added)
-
tags/1.2.3/assets/fonts (added)
-
tags/1.2.3/assets/fonts/icomoon.eot (added)
-
tags/1.2.3/assets/fonts/icomoon.svg (added)
-
tags/1.2.3/assets/fonts/icomoon.ttf (added)
-
tags/1.2.3/assets/fonts/icomoon.woff (added)
-
tags/1.2.3/assets/fonts/icomoon.woff2 (added)
-
tags/1.2.3/assets/images (added)
-
tags/1.2.3/assets/images/cinza-icon-pink.png (added)
-
tags/1.2.3/assets/images/metafizzy-icon.png (added)
-
tags/1.2.3/assets/images/razorfrog-icon-turquoise.png (added)
-
tags/1.2.3/assets/js (added)
-
tags/1.2.3/assets/js/backend-script.js (added)
-
tags/1.2.3/assets/js/frontend-script.js (added)
-
tags/1.2.3/assets/js/isotope.pkgd.min.js (added)
-
tags/1.2.3/cinza-grid.php (added)
-
tags/1.2.3/includes (added)
-
tags/1.2.3/includes/backend-cpts.php (added)
-
tags/1.2.3/includes/backend-shortcodes.php (added)
-
tags/1.2.3/readme.txt (added)
-
trunk/cinza-grid.php (modified) (1 diff)
-
trunk/includes/backend-cpts.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cinza-grid/trunk/cinza-grid.php
r3381619 r3397377 5 5 * Plugin URI: https://cinza.io/plugin/cinza-grid/ 6 6 * Description: A minimal grid plugin. 7 * Version: 1.2. 27 * Version: 1.2.3 8 8 * Requires at least: 5.2 9 9 * Requires PHP: 7.2 -
cinza-grid/trunk/includes/backend-cpts.php
r3381619 r3397377 231 231 232 232 $post_types = get_post_types( $args, $output, $operator ); 233 array_unshift($post_types , 'post');233 array_unshift($post_types, 'post', 'page'); 234 234 235 235 if ( $post_types ) { // If there are any custom public post types. 236 236 echo '<select name="cgrid_posttype" id="cgrid_posttype">'; 237 237 foreach ( $post_types as $post_type ) { 238 if(!str_starts_with($post_type, 'cinza_')) {?> 238 if ( 239 !str_starts_with($post_type, 'cinza_') && 240 !str_starts_with($post_type, 'wpb_') 241 ) {?> 239 242 <option value="<?php echo esc_attr( strtolower( $post_type ) ); ?>" <?php if ( isset( $temp_posttype ) && ( $temp_posttype == $post_type ) ) echo 'selected="selected"'; ?>> 240 243 <?php echo esc_html( $post_type ); ?> -
cinza-grid/trunk/readme.txt
r3381619 r3397377 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.2 7 Stable tag: 1.2. 27 Stable tag: 1.2.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 24 24 25 25 == Changelog == 26 27 = 1.2.3 = 28 *Release Date – 17th November, 2025* 29 30 * Included pages and excluded post types starting with “wpb_” from allowed post types 26 31 27 32 = 1.2.2 =
Note: See TracChangeset
for help on using the changeset viewer.