Server IP : 111.118.215.189 / Your IP : 216.73.216.162 Web Server : Apache System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : a1673wkz ( 2475) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /proc/thread-self/root/opt/wp/plugins/jetpack/modules/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * Module Name: Tiled Galleries * Module 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 * 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__ ); add_filter( 'jetpack_module_configuration_url_tiled-gallery', 'jetpack_tiled_gallery_configuration_url' ); } /** * Overrides default configuration url * * @uses admin_url * @return string module settings URL */ function jetpack_tiled_gallery_configuration_url() { return admin_url( 'options-media.php' ); } jetpack_load_tiled_gallery();