이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

BX Slider by TRS

설명

WordPress Slider plugin based on BX Slider. This plugin has multiple features like Full Width Slider, Logo Slider and Ticker Slider etc. This plugin provides wide range of hooks that any user can get result as his/her own requirement without touching core files.

Please note that this plugin will always free and all of its future releases and updates will always be free. But we accept donations for future work.

Special Features

  1. jQuery Easing
  2. Vertical and Horizontal mode
  3. Slider Ticker & options
  4. Drag & Drop sorting
  5. Support of Images and Videos
  6. Many filter hooks are available to do almost any task / changing without touching core.
  7. Slider Options
  8. Slider short code
  9. Slider adaptive height
  10. much more

스크린샷

설치

Upload the plugin to your blog, Activate it and have fun.

FAQ

Does this plugin work with newest WP version and also older versions?

Yes, this plugin works really fine with newest version as old version!

I want to wrap slider output in a div element

You can use trs_bx_slider_return_shortcode_html filter like this way.

    add_filter('trs_bx_slider_return_shortcode_html', 'test_func', 10, 3);
    function test_func( $slider, $slider_id ){
        if (absint($slider_id) === 4){
            $html = '<div class="your-custom-class">';
            $html .= $slider;
            $html .= '</div>';

            return $html;
        }

        // default
        return $slider;
    }

I am getting error that Extension of provided images / video is not supported. Please read documentation.

You are getting this error because you are using image or video that is supported by BX slider by TRS.
We support mp4, webm and ogg video type that is compatible with HTML video element. Same in case with images.
But you can extend and add your own extensions by using below filters.

    'trs_bx_slider_add_image_types'
    'trs_bx_slider_add_video_types'

Example:
Add More Images Extensions

    add_filter('trs_bx_slider_add_image_types', 'test_func', 10);
    function test_func( $image_types ){
        $image_types[] = 'dwg';
        $image_types[] = 'any-other-image-extension';


        return $image_types;
    }

Add More Videos Extensions

    add_filter('trs_bx_slider_add_video_types', 'test_func', 10);
    function test_func( $video_types ){
        $video_types[] = 'mp3';
        $video_types[] = 'avi';
        $video_types[] = 'any-other-video-extension';

        return $video_types;
    }

후기

2017년 6월 14일 1 reply
Hi, Today I used your plugin. I found it flexible and easy. I suggest to add more features in this plugin. Regards,
모든 2 평가 읽기

기여자 & 개발자

“BX Slider by TRS”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “BX Slider by TRS”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

v 2.1.1

  • Tested with latest WordPress version
  • Removed the demo link and donation link
  • Update the readme file

v 2.1

  • jQuery easing feature is now enabled.
  • BX Slider option for ‘Manual show without infinite loop’ is now added.
  • Show / Hide pager feature is now available.
  • Slider Mode [Vertical / Horizontal added] is now available.
  • Ticker mode is now available
  • Settings for Standard Responsive Carousel is now available.
  • limit WordPress Media to choose only one item at a time.

v 1.1

  • Now you can sort slides with Drag and Drop feature.
  • BX Slider has now adaptive height option. You can set it while creation of slider.
  • Enhanced slider dashboard view little bit.

v 1.0.3

  • Minor Bug Fixes

v 1.0.2

  • Slider height meta option added
  • Minor bug fixed – image disappeared when slider is second time update [FIXED]
  • Add one more class for bootstrapping

v 1.0.1

  • Dashboard GUI has been updated
  • Some Labels has been updated
  • Add Slider Short code on ‘add slider’ page

v 1.0.0

  • Starting the jurney