projects.php 668 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Theme options / General / Projects
  4. *
  5. * @package vamtam/consulting
  6. */
  7. return array(
  8. array(
  9. 'label' => esc_html__( 'Show "Related Projects" in Single Project View', 'vamtam-consulting' ),
  10. 'description' => esc_html__( 'Enabling this option will show more projects from the same type in the single project.', 'vamtam-consulting' ),
  11. 'id' => 'show-related-portfolios',
  12. 'type' => 'switch',
  13. 'transport' => 'postMessage',
  14. ),
  15. array(
  16. 'label' => esc_html__( '"Related Projects" title', 'vamtam-consulting' ),
  17. 'id' => 'related-portfolios-title',
  18. 'type' => 'text',
  19. 'transport' => 'postMessage',
  20. ),
  21. );