Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created September 12, 2016 16:09
Show Gist options
  • Save SeanChDavis/fe304427de37b68834ad9e15889ce898 to your computer and use it in GitHub Desktop.
Save SeanChDavis/fe304427de37b68834ad9e15889ce898 to your computer and use it in GitHub Desktop.
EDD Link Expired Text
<?php // DO NOT COPY THIS ENTIRE LINE
function sd_link_expired_text( $content ) {
$content = 'Your new text';
return $content;
}
add_filter( 'edd_download_link_expired_text', 'sd_link_expired_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment