general.php 1005 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Theme options / General / Media
  4. *
  5. * @package vamtam/consulting
  6. */
  7. return array(
  8. array(
  9. 'label' => esc_html__( '"Scroll to Top" Button', 'vamtam-consulting' ),
  10. 'description' => esc_html__( 'It is found in the bottom right side. It is sole purpose is help the user scroll a long page quickly to the top.', 'vamtam-consulting' ),
  11. 'id' => 'show-scroll-to-top',
  12. 'type' => 'switch',
  13. 'transport' => 'postMessage',
  14. ),
  15. array(
  16. 'label' => esc_html__( 'Custom JavaScript', 'vamtam-consulting' ),
  17. 'description' => wp_kses_post( __( 'If the hundreds of options in the Theme Options Panel are not enough and you need customisation that is outside of the scope of the Theme Option Panel please place your javascript in this field. The contents of this field are placed near the <strong>&lt;/body&gt;</strong> tag, which improves the load times of the page.', 'vamtam-consulting' ) ),
  18. 'id' => 'custom-js',
  19. 'type' => 'textarea',
  20. ),
  21. );