Last active
September 1, 2021 00:41
-
-
Save wpexplorer/17fef1446de954d6597540eff7241378 to your computer and use it in GitHub Desktop.
Only show close button in lightbox | Total WP Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Filter lightbox settings. | |
add_filter( 'wpex_lightbox_settings', function( $settings ) { | |
$settings['smallBtn'] = true; | |
return $settings; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment