Plugin Directory

Changeset 2948625

Timestamp:
08/07/2023 01:45:30 PM (12 months ago)
Author:
Tyrannous
Message:

Update trunk

Location:
slick-slider/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • slick-slider/trunk/composer.json

    r1520409 r2948625  
    22  "name": "tyrann0us/slick-slider",
    33  "description": "Turn your native WordPress galleries into beautiful fully responsive sliders using the awesome “slick” slider.",
    4   "version": "1.0.0",
    54  "license": "GPL-3.0",
    65  "type": "wordpress-plugin",
  • slick-slider/trunk/inc/class-output.php

    r1805362 r2948625  
    1111     *
    1212     * @since 0.1
    13      *
     13     *
    1414     * @var integer
    1515     */
     
    2020     *
    2121     * @since 0.1
    22      *
     22     *
    2323     * @return If PHP version is too low.
    2424     */
     
    7070            true
    7171        );
    72 
     72       
    7373        wp_register_style(
    7474            'slick-slider-core',
     
    108108     *
    109109     * @since 0.1
    110      *
     110     *
    111111     * @param string $output    HTML markup.
    112112     * @param array $atts       Attributes from the gallery shortcode.
     
    114114     * @return string           Complete Slick Slider markup which can be modified by multiple filters.
    115115     */
    116     public static function slick_markup( $output = '', $atts, $instance ) {
    117 
    118         $atts = apply_filters( 'shortcode_atts_gallery', $atts, [], 'gallery' );
     116    public static function slick_markup( $output = '', $atts = null, $instance = null ) {
     117       
    119118        if ( isset( $atts['slick_active'] ) && 'true' === $atts['slick_active'] ) {
    120119
     
    132131                'slick_instance' => self::$slick_instance,
    133132            ) );
     133
    134134
    135135            $id = intval( $atts['id'] );
  • slick-slider/trunk/readme.txt

    r2186316 r2948625  
    44Tags: gallery, slider, image slider, slideshow, carousel, slick, jQuery slider, lightbox
    55Requires at least: 4.6
    6 Tested up to: 4.9
     6Tested up to: 4.
    77Requires PHP: 5.6
    8 Stable tag: 0.5.1
     8Stable tag: 0.5.
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585}, 11 );`
    8686
    87 = Is it possible to prevent slick’s JS and CSS to get loaded? =
     87= Is it possible to prevent slick’s JS and CSS to get loaded? =
    8888
    8989Paste the following lines in your functions.php:
     
    132132== Changelog ==
    133133
     134
     135
     136
    134137= 0.5.1 (10/04/2017) =
    135138* Fix: Bug (introduced in 0.5) that caused non Slick galleries following a Slick gallery to not show images
  • slick-slider/trunk/slick-slider.php

    r1741188 r2948625  
    44Plugin URI:  https://wordpress.org/plugins/slick-slider/
    55Description: Turn your native WordPress galleries into beautiful sliders. Powered by the awesome “slick” slider.
    6 Version:     0.5.1
     6Version:     0.5.
    77Author:      Philipp Bammes
    88License:     GPL2
Note: See TracChangeset for help on using the changeset viewer.