Lines:
1 to 35 of 35
<?php /** * Jetpack Compatibility File * See: https://jetpack.com/ * * @package automattic/jetpack */ /* function twentynineteen_jetpack_setup() – Jetpack Compatibility File See: https://jetpack.com/ */ add_action( 'after_setup_theme', 'twentynineteen_jetpack_setup' ); /* function twentynineteen_infinite_scroll_render() – Custom render function for Infinite Scroll. */ /* function twentynineteen_init_jetpack() – */ add_action( 'init', 'twentynineteen_init_jetpack' ); /* function twentynineteen_gallery_widget_content_width() – Alter gallery widget default width. */ add_filter( 'gallery_widget_content_width', 'twentynineteen_gallery_widget_content_width' ); /* function twentynineteen_override_post_thumbnail() – Alter featured-image default visibility for content-options. */ add_filter( 'twentynineteen_can_show_post_thumbnail', 'twentynineteen_override_post_thumbnail', 10, 2 ); /* function twentynineteen_jetpack_body_classes() – Adds custom classes to the array of body classes. */ add_filter( 'body_class', 'twentynineteen_jetpack_body_classes' ); /* function amp_twentynineteen_infinite_scroll_render_hooks() – Load AMP theme specific hooks for infinite scroll. */ /* function twentynineteen_amp_infinite_footers() – Get the theme specific footers. */ /* function twentynineteen_amp_infinite_output() – Hide and remove various elements from next page load. */ /* function twentynineteen_amp_infinite_older_posts() – Filter the AMP infinite scroll older posts button */