Oleksandr Borysenko
Results
1
comments of
Oleksandr Borysenko
I've created simple solution for this problem ``` function get_theme_options() { global $wpdb; $theme_options_db = $wpdb->get_results("SELECT * FROM 'wp_options'WHERE 'option_name' LIKE '%_crb%'"); $theme_options = array(); foreach ($theme_options_db as $value) {...