Gestionnaire de fichiers - Editer - /home/wwgoat/public_html/blog/wp-content/themes/foxiz/backend/panels/block-list.php
Arrière
<?php /** Don't load directly */ if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! function_exists( 'foxiz_register_options_block_list_1' ) ) { /** * @return array */ function foxiz_register_options_block_list_1() { $prefix = 'list_1_'; return array( 'id' => 'foxiz_config_section_styling_list_1', 'title' => esc_html__( 'List 1 (Standard)', 'foxiz' ), 'icon' => 'el el-th-list', 'subsection' => true, 'desc' => html_entity_decode( esc_html__( 'These are settings for the list 1 (standard) layout. It will be overridden by the "Block Design" (for Elementor pages) and "Blog Design" (for the Blog and Archive pages).', 'foxiz' ) ), 'fields' => array( array( 'id' => $prefix . 'info', 'type' => 'info', 'class' => 'layout-info', 'style' => 'success', 'desc' => html_entity_decode( '<img src="' . get_theme_file_uri( 'assets/images/' . str_replace( '_', '-', rtrim( $prefix, '_' ) ) . '.jpg' ) . '" alt="' . esc_attr__( 'list', 'foxiz' ) . '">' ), ), array( 'id' => $prefix . 'crop_size', 'title' => esc_html__( 'Featured Image Size', 'foxiz' ), 'subtitle' => esc_html__( 'Select a featured image size to optimize with the columns setting.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_crop_size(), 'default' => '0' ), array( 'id' => $prefix . 'featured_position', 'title' => esc_html__( 'Featured Position', 'foxiz' ), 'subtitle' => esc_html__( 'Select a position for the featured image. ', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_featured_position(), 'default' => 'right' ), array( 'id' => $prefix . 'entry_category', 'title' => esc_html__( 'Entry Category', 'foxiz' ), 'subtitle' => esc_html__( 'Select a layout for the entry category to display in the post listing.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_standard_entry_category(), 'default' => 'bg-1' ), array( 'id' => $prefix . 'entry_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Entry Meta Tags', 'foxiz' ), 'subtitle' => esc_html__( 'Select settings for the entry meta bar.', 'foxiz' ), 'desc' => esc_html__( 'Organize how you want the entry meta to appear. Leave blank to set it as the default.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array( 'avatar', 'author', 'date' ), ), array( 'id' => $prefix . 'review', 'type' => 'select', 'title' => esc_html__( 'Review Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Disable or select setting for entry review meta.', 'foxiz' ), 'options' => foxiz_config_entry_review(), 'default' => 'replace', ), array( 'id' => $prefix . 'review_meta', 'type' => 'switch', 'title' => esc_html__( 'Review Meta Description', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the meta description at the end of the review bar.', 'foxiz' ), 'default' => true ), array( 'id' => $prefix . 'entry_format', 'type' => 'select', 'title' => esc_html__( 'Post Format Icon', 'foxiz' ), 'subtitle' => esc_html__( 'Disable or select setting for the post format.', 'foxiz' ), 'options' => foxiz_config_entry_format(), 'default' => 'bottom' ), array( 'id' => $prefix . 'bookmark', 'type' => 'switch', 'title' => esc_html__( 'Bookmark Icon', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the bookmark icon.', 'foxiz' ), 'default' => false ), array( 'id' => $prefix . 'excerpt_length', 'type' => 'text', 'class' => 'small-text', 'validate' => 'numeric', 'title' => esc_html__( 'Excerpt - Max Length', 'foxiz' ), 'subtitle' => esc_html__( 'select max length of the post excerpt.', 'foxiz' ), 'desc' => esc_html__( 'Leave this option blank or set 0 to disable.', 'foxiz' ), 'default' => '12' ), array( 'id' => $prefix . 'excerpt_source', 'title' => esc_html__( 'Excerpt - Source', 'foxiz' ), 'subtitle' => esc_html__( 'Where to get the post excerpt.', 'foxiz' ), 'description' => esc_html__('When you select "use title tagline". if it is empty, it will fallback to the post excerpt or content.', 'foxiz'), 'type' => 'select', 'options' => foxiz_config_excerpt_source(), 'default' => 'tagline' ), array( 'id' => $prefix . 'readmore', 'title' => esc_html__( 'Read More Button', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the read more button.', 'foxiz' ), 'type' => 'switch', 'default' => false, ), array( 'id' => $prefix . 'sponsor_meta', 'title' => esc_html__( 'Sponsored Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the "sponsored by" meta.', 'foxiz' ), 'type' => 'switch', 'default' => true, ), array( 'id' => $prefix . 'title_tag', 'title' => esc_html__( 'Title HTML Tag', 'foxiz' ), 'subtitle' => esc_html__( 'Select a title HTML tag for the post title.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_heading_tag(), 'default' => '0' ), array( 'id' => $prefix . 'hide_category', 'type' => 'select', 'title' => esc_html__( 'Responsive - Hide Entry Category', 'foxiz' ), 'subtitle' => esc_html__( 'Hide the entry category on the tablet and mobile devices.', 'foxiz' ), 'options' => foxiz_config_hide_dropdown(), 'default' => '0', ), array( 'id' => $prefix . 'tablet_hide_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Tablet - Hide Entry Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Select entry meta tags you would like to hide on the tablet devices. In case long meta it would be useful.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array(), ), array( 'id' => $prefix . 'mobile_hide_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Mobile - Hide Entry Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Select entry meta tags you would like to hide on the mobile devices. In case long meta it would be useful.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array(), ), array( 'id' => $prefix . 'hide_excerpt', 'type' => 'select', 'title' => esc_html__( 'Responsive - Hide Excerpt', 'foxiz' ), 'subtitle' => esc_html__( 'Hide the post excerpt on the tablet and mobile devices.', 'foxiz' ), 'options' => foxiz_config_hide_dropdown(), 'default' => '0', ), array( 'id' => $prefix . 'center_mode', 'type' => 'switch', 'title' => esc_html__( 'Centering Content', 'foxiz' ), 'subtitle' => esc_html__( 'Centering text and elements for the post listing.', 'foxiz' ), 'default' => false ) ) ); } } if ( ! function_exists( 'foxiz_register_options_block_list_2' ) ) { /** * @return array */ function foxiz_register_options_block_list_2() { $prefix = 'list_2_'; return array( 'id' => 'foxiz_config_section_styling_list_2', 'title' => esc_html__( 'List 2', 'foxiz' ), 'icon' => 'el el-th-list', 'subsection' => true, 'desc' => esc_html__( 'These are settings for the list 2. It will be overridden by the "Block Design" (for Elementor pages) and "Blog Design" (for the Blog and Archive pages).', 'foxiz' ), 'fields' => array( array( 'id' => $prefix . 'info', 'type' => 'info', 'class' => 'layout-info', 'style' => 'success', 'desc' => html_entity_decode( '<img src="' . get_theme_file_uri( 'assets/images/' . str_replace( '_', '-', rtrim( $prefix, '_' ) ) . '.jpg' ) . '" alt="' . esc_attr__( 'list', 'foxiz' ) . '">' ), ), array( 'id' => $prefix . 'crop_size', 'title' => esc_html__( 'Featured Image Size', 'foxiz' ), 'subtitle' => esc_html__( 'Select a featured image size to optimize with the columns setting.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_crop_size(), 'default' => '0' ), array( 'id' => $prefix . 'featured_position', 'title' => esc_html__( 'Featured Position', 'foxiz' ), 'subtitle' => esc_html__( 'Select a position for the featured image. ', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_featured_position(), 'default' => 'right' ), array( 'id' => $prefix . 'entry_category', 'title' => esc_html__( 'Entry Category', 'foxiz' ), 'subtitle' => esc_html__( 'Select a layout for the entry category to display in the post listing.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_extended_entry_category(), 'default' => 'bg-1' ), array( 'id' => $prefix . 'entry_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Entry Meta Tags', 'foxiz' ), 'subtitle' => esc_html__( 'Select settings for the entry meta bar.', 'foxiz' ), 'desc' => esc_html__( 'Organize how you want the entry meta to appear. Leave blank to set it as the default.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array( 'avatar', 'author', 'date' ), ), array( 'id' => $prefix . 'review', 'type' => 'select', 'title' => esc_html__( 'Review Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Disable or select setting for entry review meta.', 'foxiz' ), 'options' => foxiz_config_entry_review(), 'default' => 'replace', ), array( 'id' => $prefix . 'review_meta', 'type' => 'switch', 'title' => esc_html__( 'Review Meta Description', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the meta description at the end of the review bar.', 'foxiz' ), 'default' => true ), array( 'id' => $prefix . 'entry_format', 'type' => 'select', 'title' => esc_html__( 'Post Format Icon', 'foxiz' ), 'subtitle' => esc_html__( 'Disable or select setting for the post format.', 'foxiz' ), 'options' => foxiz_config_entry_format(), 'default' => 'bottom' ), array( 'id' => $prefix . 'bookmark', 'type' => 'switch', 'title' => esc_html__( 'Bookmark Icon', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the bookmark icon.', 'foxiz' ), 'default' => false ), array( 'id' => $prefix . 'excerpt_length', 'type' => 'text', 'class' => 'small-text', 'validate' => 'numeric', 'title' => esc_html__( 'Excerpt - Max Length', 'foxiz' ), 'subtitle' => esc_html__( 'select max length of the post excerpt.', 'foxiz' ), 'desc' => esc_html__( 'Leave this option blank or set 0 to disable.', 'foxiz' ), 'default' => '20' ), array( 'id' => $prefix . 'excerpt_source', 'title' => esc_html__( 'Excerpt - Source', 'foxiz' ), 'subtitle' => esc_html__( 'Where to get the post excerpt.', 'foxiz' ), 'description' => esc_html__('When you select "use title tagline". if it is empty, it will fallback to the post excerpt or content.', 'foxiz'), 'type' => 'select', 'options' => foxiz_config_excerpt_source(), 'default' => 'tagline' ), array( 'id' => $prefix . 'readmore', 'title' => esc_html__( 'Read More Button', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the read more button.', 'foxiz' ), 'type' => 'switch', 'default' => false, ), array( 'id' => $prefix . 'sponsor_meta', 'title' => esc_html__( 'Sponsored Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the "sponsored by" meta.', 'foxiz' ), 'type' => 'switch', 'default' => true, ), array( 'id' => $prefix . 'title_tag', 'title' => esc_html__( 'Title HTML Tag', 'foxiz' ), 'subtitle' => esc_html__( 'Select a title HTML tag for the post title.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_heading_tag(), 'default' => '0' ), array( 'id' => $prefix . 'hide_category', 'type' => 'select', 'title' => esc_html__( 'Responsive - Hide Entry Category', 'foxiz' ), 'subtitle' => esc_html__( 'Hide the entry category on the tablet and mobile devices.', 'foxiz' ), 'options' => foxiz_config_hide_dropdown(), 'default' => '0', ), array( 'id' => $prefix . 'tablet_hide_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Tablet - Hide Entry Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Select entry meta tags you would like to hide on the tablet devices. In case long meta it would be useful.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array(), ), array( 'id' => $prefix . 'mobile_hide_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Mobile - Hide Entry Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Select entry meta tags you would like to hide on the mobile devices. In case long meta it would be useful.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array(), ), array( 'id' => $prefix . 'hide_excerpt', 'type' => 'select', 'title' => esc_html__( 'Responsive - Hide Excerpt', 'foxiz' ), 'subtitle' => esc_html__( 'Hide the post excerpt on the tablet and mobile devices.', 'foxiz' ), 'options' => foxiz_config_hide_dropdown(), 'default' => '0', ), array( 'id' => $prefix . 'center_mode', 'type' => 'switch', 'title' => esc_html__( 'Centering Content', 'foxiz' ), 'subtitle' => esc_html__( 'Centering text and elements for the post listing.', 'foxiz' ), 'default' => false ) ) ); } } if ( ! function_exists( 'foxiz_register_options_block_list_box_1' ) ) { /** * @return array */ function foxiz_register_options_block_list_box_1() { $prefix = 'list_box_1_'; return array( 'id' => 'foxiz_config_section_styling_list_box_1', 'title' => esc_html__( 'Boxed List 1', 'foxiz' ), 'icon' => 'el el-th-list', 'subsection' => true, 'desc' => html_entity_decode( esc_html__( 'These are settings for the boxed list 1. It will be overridden by the "Block Design" (for Elementor pages) and "Blog Design" (for the Blog and Archive pages).', 'foxiz' ) ), 'fields' => array( array( 'id' => $prefix . 'info', 'type' => 'info', 'class' => 'layout-info', 'style' => 'success', 'desc' => html_entity_decode( '<img src="' . get_theme_file_uri( 'assets/images/' . str_replace( '_', '-', rtrim( $prefix, '_' ) ) . '.jpg' ) . '" alt="' . esc_attr__( 'boxed grid', 'foxiz' ) . '">' ), ), array( 'id' => $prefix . 'box_style', 'title' => esc_html__( 'Box Style', 'foxiz' ), 'subtitle' => esc_html__( 'Select a box style for the post listing.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_box_style(), 'default' => 'bg' ), array( 'id' => $prefix . 'crop_size', 'title' => esc_html__( 'Featured Image Size', 'foxiz' ), 'subtitle' => esc_html__( 'Select a featured image size to optimize with the columns setting.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_crop_size(), 'default' => '0' ), array( 'id' => $prefix . 'featured_position', 'title' => esc_html__( 'Featured Position', 'foxiz' ), 'subtitle' => esc_html__( 'Select a position for the featured image. ', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_featured_position(), 'default' => 'right' ), array( 'id' => $prefix . 'entry_category', 'title' => esc_html__( 'Entry Category', 'foxiz' ), 'subtitle' => esc_html__( 'Select a layout for the entry category to display in the post listing.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_standard_entry_category(), 'default' => 'bg-1' ), array( 'id' => $prefix . 'entry_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Entry Meta Tags', 'foxiz' ), 'subtitle' => esc_html__( 'Select settings for the entry meta bar.', 'foxiz' ), 'desc' => esc_html__( 'Organize how you want the entry meta to appear. Leave blank to set it as the default.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array( 'avatar', 'author', 'date' ), ), array( 'id' => $prefix . 'review', 'type' => 'select', 'title' => esc_html__( 'Review Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Disable or select setting for entry review meta.', 'foxiz' ), 'options' => foxiz_config_entry_review(), 'default' => 'replace', ), array( 'id' => $prefix . 'review_meta', 'type' => 'switch', 'title' => esc_html__( 'Review Meta Description', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the meta description at the end of the review bar.', 'foxiz' ), 'default' => true ), array( 'id' => $prefix . 'entry_format', 'type' => 'select', 'title' => esc_html__( 'Post Format Icon', 'foxiz' ), 'subtitle' => esc_html__( 'Disable or select setting for the post format.', 'foxiz' ), 'options' => foxiz_config_entry_format(), 'default' => 'bottom' ), array( 'id' => $prefix . 'bookmark', 'type' => 'switch', 'title' => esc_html__( 'Bookmark Icon', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the bookmark icon.', 'foxiz' ), 'default' => false ), array( 'id' => $prefix . 'excerpt_length', 'type' => 'text', 'class' => 'small-text', 'validate' => 'numeric', 'title' => esc_html__( 'Excerpt - Max Length', 'foxiz' ), 'subtitle' => esc_html__( 'select max length of the post excerpt.', 'foxiz' ), 'desc' => esc_html__( 'Leave this option blank or set 0 to disable.', 'foxiz' ), 'default' => '12' ), array( 'id' => $prefix . 'excerpt_source', 'title' => esc_html__( 'Excerpt - Source', 'foxiz' ), 'subtitle' => esc_html__( 'Where to get the post excerpt.', 'foxiz' ), 'description' => esc_html__('When you select "use title tagline". if it is empty, it will fallback to the post excerpt or content.', 'foxiz'), 'type' => 'select', 'options' => foxiz_config_excerpt_source(), 'default' => 'tagline' ), array( 'id' => $prefix . 'readmore', 'title' => esc_html__( 'Read More Button', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the read more button.', 'foxiz' ), 'type' => 'switch', 'default' => false, ), array( 'id' => $prefix . 'sponsor_meta', 'title' => esc_html__( 'Sponsored Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the "sponsored by" meta.', 'foxiz' ), 'type' => 'switch', 'default' => true, ), array( 'id' => $prefix . 'title_tag', 'title' => esc_html__( 'Title HTML Tag', 'foxiz' ), 'subtitle' => esc_html__( 'Select a title HTML tag for the post title.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_heading_tag(), 'default' => '0' ), array( 'id' => $prefix . 'hide_category', 'type' => 'select', 'title' => esc_html__( 'Responsive - Hide Entry Category', 'foxiz' ), 'subtitle' => esc_html__( 'Hide the entry category on the tablet and mobile devices.', 'foxiz' ), 'options' => foxiz_config_hide_dropdown(), 'default' => '0', ), array( 'id' => $prefix . 'tablet_hide_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Tablet - Hide Entry Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Select entry meta tags you would like to hide on the tablet devices. In case long meta it would be useful.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array(), ), array( 'id' => $prefix . 'mobile_hide_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Mobile - Hide Entry Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Select entry meta tags you would like to hide on the mobile devices. In case long meta it would be useful.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array(), ), array( 'id' => $prefix . 'hide_excerpt', 'type' => 'select', 'title' => esc_html__( 'Responsive - Hide Excerpt', 'foxiz' ), 'subtitle' => esc_html__( 'Hide the post excerpt on the tablet and mobile devices.', 'foxiz' ), 'options' => foxiz_config_hide_dropdown(), 'default' => '0', ), array( 'id' => $prefix . 'box_color', 'title' => esc_html__( 'Box Color', 'foxiz' ), 'subtitle' => esc_html__( 'Select a color for the background or border style.', 'foxiz' ), 'type' => 'color', 'transparent' => false ), array( 'id' => $prefix . 'dark_box_color', 'title' => esc_html__( 'Dark - Box Color', 'foxiz' ), 'subtitle' => esc_html__( 'Select a color for the background or border style in the dark mode or light scheme mode.', 'foxiz' ), 'type' => 'color', 'transparent' => false ), array( 'id' => $prefix . 'center_mode', 'type' => 'switch', 'title' => esc_html__( 'Centering Content', 'foxiz' ), 'subtitle' => esc_html__( 'Centering text and elements for the post listing.', 'foxiz' ), 'default' => false ), ) ); } } if ( ! function_exists( 'foxiz_register_options_block_list_box_2' ) ) { /** * @return array */ function foxiz_register_options_block_list_box_2() { $prefix = 'list_box_2_'; return array( 'id' => 'foxiz_config_section_styling_list_box_2', 'title' => esc_html__( 'Boxed List 2', 'foxiz' ), 'icon' => 'el el-th-list', 'subsection' => true, 'desc' => html_entity_decode( esc_html__( 'These are settings for the boxed list 2. It will be overridden by the "Block Design" (for Elementor pages) and "Blog Design" (for the Blog and Archive pages).', 'foxiz' ) ), 'fields' => array( array( 'id' => $prefix . 'info', 'type' => 'info', 'class' => 'layout-info', 'style' => 'success', 'desc' => html_entity_decode( '<img src="' . get_theme_file_uri( 'assets/images/' . str_replace( '_', '-', rtrim( $prefix, '_' ) ) . '.jpg' ) . '" alt="' . esc_attr__( 'boxed grid', 'foxiz' ) . '">' ), ), array( 'id' => $prefix . 'box_style', 'title' => esc_html__( 'Box Style', 'foxiz' ), 'subtitle' => esc_html__( 'Select a box style for the post listing.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_box_style(), 'default' => 'bg' ), array( 'id' => $prefix . 'crop_size', 'title' => esc_html__( 'Featured Image Size', 'foxiz' ), 'subtitle' => esc_html__( 'Select a featured image size to optimize with the columns setting.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_crop_size(), 'default' => '0' ), array( 'id' => $prefix . 'featured_position', 'title' => esc_html__( 'Featured Position', 'foxiz' ), 'subtitle' => esc_html__( 'Select a position for the featured image. ', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_featured_position(), 'default' => 'right' ), array( 'id' => $prefix . 'entry_category', 'title' => esc_html__( 'Entry Category', 'foxiz' ), 'subtitle' => esc_html__( 'Select a layout for the entry category to display in the post listing.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_extended_entry_category(), 'default' => 'bg-1' ), array( 'id' => $prefix . 'entry_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Entry Meta Tags', 'foxiz' ), 'subtitle' => esc_html__( 'Select settings for the entry meta bar.', 'foxiz' ), 'desc' => esc_html__( 'Organize how you want the entry meta to appear. Leave blank to set it as the default.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array( 'avatar', 'author', 'date' ), ), array( 'id' => $prefix . 'review', 'type' => 'select', 'title' => esc_html__( 'Review Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Disable or select setting for entry review meta.', 'foxiz' ), 'options' => foxiz_config_entry_review(), 'default' => 'replace', ), array( 'id' => $prefix . 'review_meta', 'type' => 'switch', 'title' => esc_html__( 'Review Meta Description', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the meta description at the end of the review bar.', 'foxiz' ), 'default' => true ), array( 'id' => $prefix . 'entry_format', 'type' => 'select', 'title' => esc_html__( 'Post Format Icon', 'foxiz' ), 'subtitle' => esc_html__( 'Disable or select setting for the post format.', 'foxiz' ), 'options' => foxiz_config_entry_format(), 'default' => 'bottom' ), array( 'id' => $prefix . 'bookmark', 'type' => 'switch', 'title' => esc_html__( 'Bookmark Icon', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the bookmark icon.', 'foxiz' ), 'default' => false ), array( 'id' => $prefix . 'excerpt_length', 'type' => 'text', 'class' => 'small-text', 'validate' => 'numeric', 'title' => esc_html__( 'Excerpt - Max Length', 'foxiz' ), 'subtitle' => esc_html__( 'select max length of the post excerpt.', 'foxiz' ), 'desc' => esc_html__( 'Leave this option blank or set 0 to disable.', 'foxiz' ), 'default' => '12' ), array( 'id' => $prefix . 'excerpt_source', 'title' => esc_html__( 'Excerpt - Source', 'foxiz' ), 'subtitle' => esc_html__( 'Where to get the post excerpt.', 'foxiz' ), 'description' => esc_html__('When you select "use title tagline". if it is empty, it will fallback to the post excerpt or content.', 'foxiz'), 'type' => 'select', 'options' => foxiz_config_excerpt_source(), 'default' => 'tagline' ), array( 'id' => $prefix . 'readmore', 'title' => esc_html__( 'Read More Button', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the read more button.', 'foxiz' ), 'type' => 'switch', 'default' => false, ), array( 'id' => $prefix . 'sponsor_meta', 'title' => esc_html__( 'Sponsored Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Enable or disable the "sponsored by" meta.', 'foxiz' ), 'type' => 'switch', 'default' => true, ), array( 'id' => $prefix . 'title_tag', 'title' => esc_html__( 'Title HTML Tag', 'foxiz' ), 'subtitle' => esc_html__( 'Select a title HTML tag for the post title.', 'foxiz' ), 'type' => 'select', 'options' => foxiz_config_heading_tag(), 'default' => '0' ), array( 'id' => $prefix . 'hide_category', 'type' => 'select', 'title' => esc_html__( 'Responsive - Hide Entry Category', 'foxiz' ), 'subtitle' => esc_html__( 'Hide the entry category on the tablet and mobile devices.', 'foxiz' ), 'options' => foxiz_config_hide_dropdown(), 'default' => '0', ), array( 'id' => $prefix . 'tablet_hide_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Tablet - Hide Entry Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Select entry meta tags you would like to hide on the tablet devices. In case long meta it would be useful.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array(), ), array( 'id' => $prefix . 'mobile_hide_meta', 'type' => 'select', 'multi' => true, 'title' => esc_html__( 'Mobile - Hide Entry Meta', 'foxiz' ), 'subtitle' => esc_html__( 'Select entry meta tags you would like to hide on the mobile devices. In case long meta it would be useful.', 'foxiz' ), 'options' => foxiz_config_entry_meta_tags(), 'default' => array(), ), array( 'id' => $prefix . 'hide_excerpt', 'type' => 'select', 'title' => esc_html__( 'Responsive - Hide Excerpt', 'foxiz' ), 'subtitle' => esc_html__( 'Hide the post excerpt on the tablet and mobile devices.', 'foxiz' ), 'options' => foxiz_config_hide_dropdown(), 'default' => '0', ), array( 'id' => $prefix . 'box_color', 'title' => esc_html__( 'Box Color', 'foxiz' ), 'subtitle' => esc_html__( 'Select a color for the background or border style.', 'foxiz' ), 'type' => 'color', 'transparent' => false ), array( 'id' => $prefix . 'dark_box_color', 'title' => esc_html__( 'Dark - Box Color', 'foxiz' ), 'subtitle' => esc_html__( 'Select a color for the background or border style in the dark mode or light scheme mode.', 'foxiz' ), 'type' => 'color', 'transparent' => false ), array( 'id' => $prefix . 'center_mode', 'type' => 'switch', 'title' => esc_html__( 'Centering Content', 'foxiz' ), 'subtitle' => esc_html__( 'Centering text and elements for the post listing.', 'foxiz' ), 'default' => false ), ) ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Génération de la page: 0.04 |
proxy
|
phpinfo
|
Réglages