Skip to content

Instantly share code, notes, and snippets.

@wpexplorer
Last active September 1, 2021 00:41
Show Gist options
  • Save wpexplorer/17fef1446de954d6597540eff7241378 to your computer and use it in GitHub Desktop.
Save wpexplorer/17fef1446de954d6597540eff7241378 to your computer and use it in GitHub Desktop.
Only show close button in lightbox | Total WP Theme
// 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