mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
9 lines
191 B
Text
9 lines
191 B
Text
add_filter( 'dlm_do_not_force', 'do_not_force_by_id' );
|
|
|
|
function do_not_force_by_id( $do_not_force, $download ) {
|
|
if ( '25' == $download->id ) {
|
|
return true;
|
|
}
|
|
|
|
return $do_not_force;
|
|
}
|