jetpack.php 568 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Jetpack Compatibility File
  4. *
  5. * @link https://jetpack.com/
  6. *
  7. * @package Seedlet
  8. */
  9. /**
  10. * Jetpack setup function.
  11. *
  12. * See: https://jetpack.com/support/infinite-scroll/
  13. * See: https://jetpack.com/support/responsive-videos/
  14. */
  15. function seedlet_jetpack_setup() {
  16. // Add theme support for Responsive Videos.
  17. add_theme_support( 'jetpack-responsive-videos' );
  18. // Add theme support for Content Options.
  19. add_theme_support( 'jetpack-content-options', array(
  20. 'author-bio' => true,
  21. ) );
  22. }
  23. add_action( 'after_setup_theme', 'seedlet_jetpack_setup' );