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

Agnosia Bootstrap Carousel by AuSoft

설명

Agnosia Bootstrap Carousel hooks the [gallery] shortcode with attribute type="carousel" in order to show a Bootstrap Carousel based on the selected images and their titles and descriptions.

This plugin assumes either your theme includes the necessary Bootstrap javascript and CSS files to display the carousel properly, or that you have included those files on your own. It will not include the files for you, so if they are not present, the carousel will not work and you will only obtain its bare HTML.

Basic example:

[gallery type="carousel" ids="61,60,59"]

Required attributes:

  • type: it needs to be type="carousel".
  • ids: you must provide a list of ids corresponding to attachments, like ids="1,2,3".

Otherwise, the default [gallery] shortcode function will be processed instead of this plugin’s one.

Optional attributes:

  • name: any name. String will be sanitize to be used as an HTML ID. Recommended when you want to have more than one carousel in the same page. Default: agnosia-bootstrap-carousel. Example: [gallery type="carousel" ids="61,60,59" name="myCarousel"]
  • indicators: indicators position. Accepted values: before-inner, after-inner, after-control, false (hides indicators). Default: before-inner. Example: [gallery type="carousel" ids="61,60,59" indicators="after-inner"]
  • width: carousel container width, in px or %. Default: not set. Example: [gallery type="carousel" ids="61,60,59" width="800px"]
  • height: carousel item height, in px or %. Default: not set. Example: [gallery type="carousel" ids="61,60,59" height="400px"]
  • titletag: define HTML tag for image title. Default: h4. Example: [gallery type="carousel" ids="61,60,59" titletag="h2"]
  • wpautop: auto-format text. Default: true. Example: [gallery type="carousel" ids="61,60,59" wpautop="false"]
  • title: show or hide image title. Set false to hide. Default: true. Example: [gallery type="carousel" ids="61,60,59" title="false"]
  • text: show or hide image text. Set false to hide. Default: true. Example: [gallery type="carousel" ids="61,60,59" text="false"]
  • containerclass: extra class for carousel container. Default: not set. Example: [gallery type="carousel" ids="61,60,59" containerclass="container"]
  • itemclass: extra class for carousel item. Default: not set. Example: [gallery type="carousel" ids="61,60,59" itemclass="container"]
  • captionclass: extra class for item caption. Default: not set. Example: [gallery type="carousel" ids="61,60,59" captionclass="container"]
  • control: control arrows display. Accepted values: true (to show), false (to hide). Default: true. Example: [gallery type="carousel" ids="61,60,59" control="false"]
  • interval: the amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle. Default: 5000. Example: [gallery type="carousel" ids="61,60,59" interval="2000"]
  • pause: pauses the cycling of the carousel on mouseenter and resumes the cycling of the carousel on mouseleave. Default: “hover”. Example: [gallery type="carousel" ids="61,60,59" interval="hover"]
  • size: size for image attachment. Accepted values: thumbnail, medium, large, full. Default: full. See wp_get_attachment_image_src() for further reference. Example: [gallery type="carousel" ids="61,60,59" size="full"]

Native supported attributes:

  • orderby: Alternative order for your images. Example: [gallery type="carousel" ids="61,60,59" orderby="rand"]
  • link: where your image titles will link to. Accepted values: file, none and empty. An empty value will link to your attachment’s page. Example: [gallery type="carousel" ids="61,60,59" link="file"]

Extending

This plugin offers hooks for actions and filters, so you can modify its functionality or add your own.

Action hooks:

  • agnosia_bootstrap_carousel_before_init: Do something before the carousel is loaded.
  • agnosia_bootstrap_carousel_init: Do something after the carousel is loaded.

Filter hooks:

  • agnosia_bootstrap_carousel_attributes: Modify the attributes passed to the shortcode.
  • agnosia_bootstrap_carousel_posts: Modify the $post objects that the shortcode is using.
  • agnosia_bootstrap_carousel_container_style: Modify the carousel container style.
  • agnosia_bootstrap_carousel_item_style: Modify the style of the carousel items.
  • agnosia_bootstrap_carousel_output: Modify the full HTML output of the carousel.
  • agnosia_bootstrap_carousel_container: Modify the HTML output of the carousel container tag.
  • agnosia_bootstrap_carousel_inner: Modify the HTML output of the carousel inner tag.
  • agnosia_bootstrap_carousel_caption_container: Modify the HTML output of the caption container tag.
  • agnosia_bootstrap_carousel_img_container: Modify the HTML output of the image container tag.
  • agnosia_bootstrap_carousel_img: Modify the HTML output of the item image tag.
  • agnosia_bootstrap_carousel_excerpt: Modify the HTML output of the image caption.
  • agnosia_bootstrap_carousel_indicators: Modify the HTML output of the indicators element.
  • agnosia_bootstrap_carousel_control: Modify the HTML output of the control element.
  • agnosia_bootstrap_carousel_javascript: Modify the output of the carousel Javascript.
  • agnosia_bootstrap_carousel_make_array: Modify the list of $post IDs that the carousel is using.

Contributing

You can make suggestions and submit your own modifications to this plugin on Github.

For more information, visit our website.

스크린샷

  • This is how you should use the shortcode.
  • This is how it should appear in your website. Note that your theme styles may override Bootstrap styles.
  • This is an approximation on how the resultant HTML code should look like.

설치

  1. Unzip agnosia-bootstrap-carousel.zip and upload the agnosia-bootstrap-carousel folder to your /wp-content/plugins/ directory.
  2. Activate the plugin through the Plugins menu into WordPress admin area.
  3. Start using the [gallery] shortcode to show a Bootstrap Carousel.

후기

2016년 9월 3일
Just worked, with next to no configuration or messing around. Pleased to see so many good Bootstrap plugins lately. Feature suggestion: enabling fade instead of slide.
모든 8 평가 읽기

기여자 & 개발자

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

기여자

자국어로 “Agnosia Bootstrap Carousel by AuSoft”(을)를 번역하세요.

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

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

변경이력

1.1

  • Improvements on filters. See commit for details.

1.0

  • Support for random order.
  • Support for link type (“attachment image”, “media file” and “none”).
  • Add “Bootstrap Carousel” option to gallery types when using Jetpack Tiled Galleries.
  • Custom filters and actions.
  • Object oriented code.
  • Better inline docs.

0.3.1

Added new size attribute. Thanks to blogrammierer!

0.3

Fixed compatibility issues.

0.2

New optional attributes: width, height, titletag, wpautop, title, text, itemclass, containerclass, captionclass.

0.1

First release!