![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/claquemagazineawards.com/wp-content/themes/exs/options/taxonomies/ |
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } $exs_layouts = exs_get_feed_layout_options( true ); $exs_gaps = exs_get_feed_layout_gap_options( true ); $exs_sidebar_positions = exs_get_sidebar_position_options( true ); //options for categories //returning array of fields return array( 'layout' => array( 'type' => 'select', 'label' => esc_html__( 'Layout', 'exs' ), 'description' => esc_html__( 'Category layout', 'exs' ), 'default' => '', 'choices' => $exs_layouts, ), 'gap' => array( 'type' => 'select', 'label' => esc_html__( 'Items gap (for grid layouts)', 'exs' ), 'description' => esc_html__( 'Gap between elements in pixels', 'exs' ), 'default' => '', 'choices' => $exs_gaps, ), 'sidebar_position' => array( 'type' => 'select', 'label' => esc_html__( 'Sidebar position', 'exs' ), 'description' => esc_html__( 'Sidebar position for category', 'exs' ), 'default' => '', 'choices' => $exs_sidebar_positions, ), );