HEX
Server: Apache/2.4.65 (Debian)
System: Linux wordpress-7cb4c6b6f6-nmkdc 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: www-data (33)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/themesky/metaboxes/testimonial_options.php
<?php 
$options = array();

$options[] = array(
				'id'		=> 'gravatar_email'
				,'label'	=> esc_html__('Gravatar Email Address', 'themesky')
				,'desc'		=> esc_html__('Enter an e-mail address to display Gravatar profile image instead of using the "Featured Image". You have to remove the "Featured Image".', 'themesky')
				,'type'		=> 'text'
			);
			
$options[] = array(
				'id'		=> 'byline'
				,'label'	=> esc_html__('Byline', 'themesky')
				,'desc'		=> esc_html__('Enter a byline for the customer giving this testimonial. For example: CEO of Theme-Sky', 'themesky')
				,'type'		=> 'text'
			);
			
$options[] = array(
				'id'		=> 'url'
				,'label'	=> esc_html__('URL', 'themesky')
				,'desc'		=> esc_html__('Enter an URL that applies to this customer. For example: http://theme-sky.com/', 'themesky')
				,'type'		=> 'text'
			);
			
$options[] = array(
				'id'		=> 'rating'
				,'label'	=> esc_html__('Rating', 'themesky')
				,'desc'		=> ''
				,'type'		=> 'select'
				,'options'	=> array(
						'-1'	=> esc_html__('no rating', 'themesky')
						,'1'	=> esc_html__('1 star', 'themesky')
						,'1.5'	=> esc_html__('1.5 star', 'themesky')
						,'2'	=> esc_html__('2 stars', 'themesky')
						,'2.5'	=> esc_html__('2.5 stars', 'themesky')
						,'3'	=> esc_html__('3 stars', 'themesky')
						,'3.5'	=> esc_html__('3.5 stars', 'themesky')
						,'4'	=> esc_html__('4 stars', 'themesky')
						,'4.5'	=> esc_html__('4.5 stars', 'themesky')
						,'5'	=> esc_html__('5 stars', 'themesky')
				)
			);
?>