mirror of
https://fast.feibisi.com/https://github.com/wp-cli/scaffold-command.git
synced 2026-07-27 11:51:22 +08:00
7 lines
124 B
PHP
7 lines
124 B
PHP
<?php
|
|
|
|
function wp_mail( $to ) {
|
|
// Log for testing purposes
|
|
WP_CLI::log( "WP-CLI test suite: Sent email to {$to}." );
|
|
}
|
|
|