Skip to content

Instantly share code, notes, and snippets.

@kurudrive
Created February 24, 2020 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurudrive/06f8e710e663f5a1eb5a5dbf27d906e7 to your computer and use it in GitHub Desktop.
Save kurudrive/06f8e710e663f5a1eb5a5dbf27d906e7 to your computer and use it in GitHub Desktop.
Next Prevの画像を非表示にする
<?php
add_filter( 'lightning_next_prev_options', 'my_lightning_next_prev_options_custom' );
function my_lightning_next_prev_options_custom( $options ) {
$options['display_image'] = false;
return $options;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment