22 lines
480 B
PHP
22 lines
480 B
PHP
<?php
|
|
/**
|
|
* Elastic-Slider Metabox options.
|
|
*
|
|
* @author ThemeFusion
|
|
* @copyright (c) Copyright by ThemeFusion
|
|
* @link https://avada.com
|
|
* @package Avada
|
|
* @subpackage Core
|
|
*/
|
|
|
|
// Do not allow directly accessing this file.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit( 'Direct script access denied.' );
|
|
}
|
|
|
|
$this->text( 'caption_1', esc_html__( 'Title', 'Avada' ), '' );
|
|
$this->text( 'caption_2', esc_html__( 'Caption', 'Avada' ), '' );
|
|
|
|
?>
|
|
<div class="clear"></div>
|