HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/expodubai/wp-content/themes/osapa_/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')
				)
			);
?>