File: /datos/www/expodubai/wp-content/themes/osapaOld/inc/advanceoptions/testimonial_options.php
<?php
$options = array();
$options[] = array(
'id' => 'gravatar_email'
,'label' => esc_html__('Gravatar Email Address', 'osapa')
,'desc' => esc_html__('Enter in an e-mail address, to use a Gravatar, instead of using the "Featured Image". You have to remove the "Featured Image".', 'osapa')
,'type' => 'text'
);
$options[] = array(
'id' => 'byline'
,'label' => esc_html__('Byline', 'osapa')
,'desc' => esc_html__('Enter a byline for the customer giving this testimonial (for example: "CEO of ThemeFTC").', 'osapa')
,'type' => 'text'
);
$options[] = array(
'id' => 'url'
,'label' => esc_html__('URL', 'osapa')
,'desc' => esc_html__('Enter a URL that applies to this customer (for example: http://themeftc.com/).', 'osapa')
,'type' => 'text'
);
$options[] = array(
'id' => 'rating'
,'label' => esc_html__('Rating', 'osapa')
,'desc' => ''
,'type' => 'select'
,'options' => array(
'-1' => esc_html__('no rating', 'osapa')
,'0' => esc_html__('0 star', 'osapa')
,'0.5' => esc_html__('0.5 star', 'osapa')
,'1' => esc_html__('1 star', 'osapa')
,'1.5' => esc_html__('1.5 star', 'osapa')
,'2' => esc_html__('2 stars', 'osapa')
,'2.5' => esc_html__('2.5 stars', 'osapa')
,'3' => esc_html__('3 stars', 'osapa')
,'3.5' => esc_html__('3.5 stars', 'osapa')
,'4' => esc_html__('4 stars', 'osapa')
,'4.5' => esc_html__('4.5 stars', 'osapa')
,'5' => esc_html__('5 stars', 'osapa')
)
);
?>