Code-Snippets-Functions/Execute a function on a child site/Download Monitor/change-empty-downloads-redirection.txt

4 lines
180 B
Text

function dlm_custom_empty_download_redirect_url( $s ) {
return site_url('no-access');
}
add_filter( 'dlm_empty_download_redirect_url', 'dlm_custom_empty_download_redirect_url' );