Created
September 12, 2016 16:09
-
-
Save SeanChDavis/fe304427de37b68834ad9e15889ce898 to your computer and use it in GitHub Desktop.
EDD Link Expired Text
This file contains hidden or 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
<?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