EstudioJuridicoAlmagro_Web/www/wpv_theme/metaboxes/slideshow.php

66 lines
1.4 KiB
PHP
Raw Normal View History

<?php
return array(
array(
'name' => __('General', 'wpv'),
'type' => 'separator',
),
array(
'name' => __('Slide link', 'wpv'),
'id' => 'slide-link',
'type' => 'text',
),
array(
'name' => __('Link target', 'wpv'),
'id' => 'slide-link-target',
'type' => 'select',
'options' => array(
'_self' => 'Same window',
'_blank' => 'New window',
),
),
array(
'name' => __('Use the main content as', 'wpv'),
'id' => 'slide-content-is',
'type' => 'select',
'options' => array(
'caption' => 'Caption',
'slide' => 'Actual slide',
),
),
array(
'name' => __('Style', 'wpv'),
'type' => 'separator',
),
array(
'name' => __('Background', 'wpv'),
'id' => 'background',
'type' => 'color',
'default' => '',
),
array(
'name' => __('Advanced captions', 'wpv'),
'type' => 'separator',
),
array(
'text' => __('Certain slider styles may provide you with the option to have several captions each of which appears in a different place and/or have different animation from the others. Please refer to the documentation to see which slider styles support this feature.', 'wpv'),
'class' => 'sticked',
'type' => 'info',
),
array(
'name' => __('Caption helper 1', 'wpv'),
'id' => 'caption-helper-1',
'type' => 'textarea',
'rows' => 5,
),
array(
'name' => __('Caption helper 2', 'wpv'),
'id' => 'caption-helper-2',
'type' => 'textarea',
'rows' => 5,
),
);