golden hour
/home/godaofbq/dev.hyperredbed.com/wp-content/plugins/elementor/modules/atomic-widgets/styles
⬆️ Go Up
Upload
File/Folder
Size
Actions
atomic-styles.php
2.34 KB
Del
OK
style-schema.php
3.91 KB
Del
OK
styles-renderer.php
3.44 KB
Del
OK
utils.php
288 B
Del
OK
Edit: utils.php
<?php namespace Elementor\Modules\AtomicWidgets\Styles; class Utils { public static function generate_id( string $prefix = '', $existing_ids = [] ): string { do { $id = $prefix . wp_rand( 1000000, 9999999 ); } while ( in_array( $id, $existing_ids, true ) ); return $id; } }
Save