| 123456789101112131415161718192021222324 |
- <?php
- /**
- * Theme options / General / Projects
- *
- * @package vamtam/consulting
- */
- return array(
- array(
- 'label' => esc_html__( 'Show "Related Projects" in Single Project View', 'vamtam-consulting' ),
- 'description' => esc_html__( 'Enabling this option will show more projects from the same type in the single project.', 'vamtam-consulting' ),
- 'id' => 'show-related-portfolios',
- 'type' => 'switch',
- 'transport' => 'postMessage',
- ),
- array(
- 'label' => esc_html__( '"Related Projects" title', 'vamtam-consulting' ),
- 'id' => 'related-portfolios-title',
- 'type' => 'text',
- 'transport' => 'postMessage',
- ),
- );
|