Last active
October 31, 2016 21:31
-
-
Save rickalday/1e09968664e9945fa938 to your computer and use it in GitHub Desktop.
This file contains 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
//Returns the Sell Media Item post title | |
function sell_media_custom_view_text(){ | |
global $post; | |
$title = get_the_title( $post->ID ); | |
return $title; | |
} | |
add_filter( 'sell_media_view_gallery_text', 'sell_media_custom_view_text' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment