/home/techb158/public_html/wp-content/plugins/meta-box/inc/fields
Edit: /home/techb158/public_html/wp-content/plugins/meta-box/inc/fields/password.php (2263B)
';
$output .= $button;
return $output;
}
/**
* Store secured password in the database.
*
* @param mixed $new The submitted meta value.
* @param mixed $old The existing meta value.
* @param int $post_id The post ID.
* @param array $field The field parameters.
* @return string
*/
public static function value( $new, $old, $post_id, $field ) {
$new = $new !== $old ? wp_hash_password( $new ) : $new;
return $new;
}
}