canonical-urls
4 months ago
carousel
1 day ago
comment-likes
8 months ago
comments
2 months ago
custom-post-types
1 month ago
external-media
8 months ago
google-fonts
1 month ago
gravatar
6 years ago
infinite-scroll
1 month ago
likes
1 day ago
markdown
2 months ago
memberships
1 day ago
photon-cdn
1 day ago
plugin-search
2 months ago
post-by-email
8 months ago
related-posts
1 week ago
scan
4 months ago
seo-tools
1 month ago
sharedaddy
1 month ago
shortcodes
1 week ago
shortlinks
4 weeks ago
simple-payments
8 months ago
site-icon
8 months ago
sitemaps
2 months ago
stats
7 months ago
subscriptions
1 week ago
theme-tools
1 month ago
tiled-gallery
1 month ago
verification-tools
2 months ago
videopress
1 day ago
widget-visibility
2 months ago
widgets
1 month ago
woocommerce-analytics
3 months ago
wordads
1 month ago
wpcom-tos
7 months ago
account-protection.php
3 months ago
blaze.php
8 months ago
blocks.php
8 months ago
canonical-urls.php
5 months ago
carousel.php
8 months ago
comment-likes.php
8 months ago
comments.php
4 months ago
contact-form.php
8 months ago
copy-post.php
2 months ago
custom-content-types.php
3 months ago
google-fonts.php
3 months ago
gravatar-hovercards.php
2 months ago
infinite-scroll.php
8 months ago
json-api.php
8 months ago
latex.php
2 months ago
likes.php
2 months ago
markdown.php
8 months ago
module-extras.php
8 months ago
module-headings.php
1 week ago
module-info.php
5 months ago
monitor.php
1 month ago
notes.php
1 day ago
photon-cdn.php
8 months ago
photon.php
8 months ago
plugin-search.php
1 month ago
podcast.php
1 week ago
post-by-email.php
3 months ago
post-list.php
8 months ago
protect.php
3 months ago
publicize.php
8 months ago
related-posts.php
2 months ago
search.php
8 months ago
seo-tools.php
1 month ago
sharedaddy.php
5 months ago
shortcodes.php
8 months ago
shortlinks.php
2 months ago
simple-payments.php
8 months ago
sitemaps.php
8 months ago
sso.php
1 month ago
stats.php
1 week ago
subscriptions.php
1 week ago
theme-tools.php
8 months ago
tiled-gallery.php
8 months ago
vaultpress.php
8 months ago
verification-tools.php
3 months ago
videopress.php
8 months ago
waf.php
8 months ago
widget-visibility.php
8 months ago
widgets.php
8 months ago
woocommerce-analytics.php
8 months ago
wordads.php
8 months ago
wpcom-reader.php
5 months ago
wpgroho.js
1 year ago
carousel.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Module Name: Carousel |
| 4 | * Module Description: Turn your image galleries into immersive, full‑screen slideshows. |
| 5 | * Sort Order: 22 |
| 6 | * Recommendation Order: 12 |
| 7 | * First Introduced: 1.5 |
| 8 | * Requires Connection: No |
| 9 | * Auto Activate: No |
| 10 | * Module Tags: Photos and Videos |
| 11 | * Feature: Appearance |
| 12 | * Additional Search Queries: gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image, creator |
| 13 | * |
| 14 | * @package automattic/jetpack |
| 15 | */ |
| 16 | |
| 17 | if ( ! defined( 'ABSPATH' ) ) { |
| 18 | exit( 0 ); |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Require the jetpack-carousel module code |
| 23 | */ |
| 24 | require __DIR__ . '/carousel/jetpack-carousel.php'; |
| 25 |