mirror of
https://gh.wpcy.net/https://github.com/mainwp/mainwp-custom-dashboard-extension-examples.git
synced 2026-07-15 10:45:21 +08:00
7 lines
205 B
PHP
7 lines
205 B
PHP
<?php
|
|
|
|
add_filter( 'mainwp_updatescheck_disable_sendmail', 'mycustom_mainwp_updatescheck_disable_sendmail', 10, 1 );
|
|
function mycustom_mainwp_updatescheck_disable_sendmail( $input ) {
|
|
return true;
|
|
}
|
|
?>
|