Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adampickering/20d97290f819020b8f78 to your computer and use it in GitHub Desktop.
Save adampickering/20d97290f819020b8f78 to your computer and use it in GitHub Desktop.
Easy Digital Downloads - Download Label
<?php
/**
* Plugin Name: Easy Digital Downloads - Download Label
*/
function astoundify_edd_purchase_link_defaults( $args ) {
$price = edd_get_download_price( $args['download_id'] );
if ( 0 == $price ) {
$args[ 'text' ] = __( 'Free' );
}
return $args;
}
add_filter( 'edd_purchase_link_defaults', 'astoundify_edd_purchase_link_defaults' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment