jetpack.php 471 B

12345678910111213141516171819202122
  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 Content Options.
  17. add_theme_support( 'jetpack-content-options', array(
  18. 'author-bio' => true,
  19. ) );
  20. }
  21. add_action( 'after_setup_theme', 'seedlet_jetpack_setup' );