Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Ameliabooking_Helpers::get_services_categories()
Get amelia services categories.
Return Return
(array) The amelia services categories.
Source Source
File: src/integrations/ameliabooking/helpers/ameliabooking-helpers.php
public function get_services_categories() { global $wpdb; $items = array(); $categories = $wpdb->get_results( $wpdb->prepare( "SELECT id, name FROM {$wpdb->prefix}amelia_categories WHERE status = %s ORDER BY name ASC LIMIT 100", 'visible' ), OBJECT ); if ( ! empty( $categories ) ) { foreach ( $categories as $category ) { $items[ $category->id ] = $category->name; } } return $items; }
Expand full source code Collapse full source code View on Github