JezK
Edit File: SanitizeId.php
<?php namespace GeminiLabs\SiteReviews\Modules\Sanitizers; /** * This allows lowercase alphannumeric characters, dashes, and underscores. */ class SanitizeId extends StringSanitizer { public const MAX_LENGTH = 32; public function run(): string { $value = sanitize_key($this->value()); $value = preg_replace('/^\d+/', '', $value); $value = substr($value, 0, static::MAX_LENGTH); return esc_attr($value); } protected function value(): string { return (new SanitizeText($this->value))->run(); } }