footer.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * Theme options / Footer
  4. *
  5. * @package vamtam/consulting
  6. */
  7. return array(
  8. array(
  9. 'label' => esc_html__( 'Show Footer on One Page Template', 'vamtam-consulting' ),
  10. 'id' => 'one-page-footer',
  11. 'type' => 'switch',
  12. ),
  13. array(
  14. 'label' => esc_html__( 'Footer Template', 'vamtam-consulting' ),
  15. 'id' => 'footer-beaver-template',
  16. 'type' => 'select',
  17. 'choices' => vamtam_get_beaver_layouts( array(
  18. '' => esc_html__( '-- Select Template --', 'vamtam-consulting' ),
  19. ) ),
  20. ),
  21. array(
  22. 'id' => 'footer-typography-title',
  23. 'label' => esc_html__( 'Typography', 'vamtam-consulting' ),
  24. 'type' => 'heading',
  25. ),
  26. array(
  27. 'label' => esc_html__( 'Widget Areas Titles', 'vamtam-consulting' ),
  28. 'description' => esc_html__( 'Please note that this option will override the general headings style set in the General Typography" tab.', 'vamtam-consulting' ),
  29. 'id' => 'footer-sidebars-titles',
  30. 'type' => 'typography',
  31. 'compiler' => true,
  32. 'transport' => 'postMessage',
  33. ),
  34. );