Skip to content

Instantly share code, notes, and snippets.

@sunshinephotocart
Last active October 29, 2018 18:41
Show Gist options
  • Save sunshinephotocart/8b036153bf0c1896d76c to your computer and use it in GitHub Desktop.
Save sunshinephotocart/8b036153bf0c1896d76c to your computer and use it in GitHub Desktop.
Sunshine Photo Cart: Filter image name to show file name
// Add this to your theme's functions.php file
// Or use this plugin https://wordpress.org/plugins/my-custom-functions/
add_filter( 'sunshine_image_name', 'my_sunshine_image_name', 10, 2 );
function my_sunshine_image_name( $name, $image ) {
return basename( get_attached_file( $image->ID ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment