Changeset 3292009
- Timestamp:
- 05/12/2025 03:54:42 PM (11 months ago)
- Location:
- post-types-slider/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
admin/class-post-type-slider-admin.php (modified) (2 diffs)
-
post-types-slider.php (modified) (2 diffs)
-
public/css/post-type-slider-public.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-types-slider/trunk/README.txt
r3284786 r3292009 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
post-types-slider/trunk/admin/class-post-type-slider-admin.php
r3284786 r3292009 57 57 add_action('add_meta_boxes', [$this, 'posttype_slider_metaboxes']); 58 58 add_action('save_post', [$this, 'postslider_save_meta']); 59 add_filter('manage_ slide_posts_columns', [$this, 'posttype_slide_columns']);60 add_action('manage_ slide_posts_custom_column', [$this, 'posttype_slider_columns'], 10, 2);59 add_filter('manage_posttysl_slide_posts_columns', [$this, 'posttype_slide_columns']); 60 add_action('manage_posttysl_slide_posts_custom_column', [$this, 'posttype_slider_columns'], 10, 2); 61 61 add_shortcode('posttysl_slider', [$this, 'posttysl__shortcode']); 62 62 add_action('wp_ajax_post_slider_category', [$this, 'postslider_category']); … … 285 285 'Slider Options', 286 286 [$this, 'postslider_metabox'], 287 ' slide',287 'posttysl_slide', 288 288 'normal', 289 289 'high' -
post-types-slider/trunk/post-types-slider.php
r3284786 r3292009 17 17 * Plugin URI: https://clickysoft.com 18 18 * Description: Plugin for create slide of different post type 19 * Version: 1.0. 219 * Version: 1.0.3 20 20 * Author: Clickysoft 21 21 * Author URI: https://clickysoft.com/ … … 82 82 $plugin->run(); 83 83 } 84 posttysl_ _run_posttype_slider();84 posttysl_run_posttype_slider(); -
post-types-slider/trunk/public/css/post-type-slider-public.css
r3284786 r3292009 22 22 } 23 23 24 .post_slide ul.slick-dots button:hover {24 .post_slide ul.slick-dots button:hover { 25 25 border: none !important; 26 26 } … … 67 67 box-shadow: 0px 2px 6px 2px #d3d3d34d; 68 68 } 69 70 71 72 @media (max-width: 767px) { 73 74 .post_type_grid .post_slide { 75 76 width: 100%; 77 } 78 79 .post_type_grid { 80 flex-direction: column; 81 gap: 10px; 82 } 83 84 .post_slide h2 { 85 font-size: 18px; 86 line-height: 25px; 87 } 88 89 .entry-content p { 90 font-size: 16px; 91 line-height: 22px; 92 } 93 }
Note: See TracChangeset
for help on using the changeset viewer.