rtmedia_upload_terms_service_link_label

Description

Filter to modify ‘Terms of Service’ slug of upload terms.
Note: From Version 1.2.6 of rtMedia Upload Terms this can be enabled from rtMedia Settings > Other Settings > "ASK USERS TO AGREE TO YOUR TERMS"

Example

add_filter('rtmedia_upload_terms_service_link_label', 'rtm_upload_terms_service_link_label', 10, 1);

function rtm_upload_terms_service_link_label( $term_slug ){
    
return 'Terms and conditions';
}