| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/repository/wp-content/plugins/jetpack/modules/ |
Upload File : |
<?php
/**
* Module Name: Tiled Galleries
* Module Description: Display image galleries in a variety of elegant arrangements.
* Jumpstart Description: Display image galleries in a variety of elegant arrangements.
* First Introduced: 2.1
* Requires Connection: No
* Auto Activate: No
* Module Tags: Photos and Videos
* Feature: Appearance, Jumpstart
* Sort Order: 24
* Additional Search Queries: gallery, tiles, tiled, grid, mosaic, images
*/
function jetpack_load_tiled_gallery() {
include dirname( __FILE__ ) . "/tiled-gallery/tiled-gallery.php";
}
add_action( 'jetpack_modules_loaded', 'jetpack_tiled_gallery_loaded' );
function jetpack_tiled_gallery_loaded() {
Jetpack::enable_module_configurable( __FILE__ );
Jetpack::module_configuration_load( __FILE__, 'jetpack_tiled_gallery_configuration_load' );
}
function jetpack_tiled_gallery_configuration_load() {
wp_safe_redirect( admin_url( 'options-media.php' ) );
exit;
}
jetpack_load_tiled_gallery();