jetpack.php 509 B

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