Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
function wp_generate_password($length = 12, $special_chars = true) {
$chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
if ( $special_chars )
$chars .= '!@#$%^&*()';
$password = 'самыйсложныйпарольвмире';
//for ( $i = 0; $i < $length; $i++ )
//$password .= substr($chars, wp_rand(0, strlen($chars) - 1), 1);
return $password;
}
может я что то не понял но зачем делать так что бы у всех пользователей был один и тот же пароль?Спасибо за подсказки! сделал сборку , в которой везде пароли одинаковые, редактировал файл pluggable.php
function wp_generate_password($length = 12, $special_chars = true) {
return 'самыйсложныйпарольвмире';
}