golden hour
/home/doctorbruno/public_html/doc-noc.com/wp-content/themes/astrid/inc
⬆️ Go Up
Upload
File/Folder
Size
Actions
custom-header.php
1.4 KB
Del
OK
customizer.php
26.34 KB
Del
OK
extras.php
678 B
Del
OK
framework
-
Del
OK
jetpack.php
951 B
Del
OK
styles.php
6.47 KB
Del
OK
template-tags.php
2.2 KB
Del
OK
Edit: jetpack.php
<?php /** * Jetpack Compatibility File. * * @link https://jetpack.me/ * * @package Astrid */ /** * Jetpack setup function. * * See: https://jetpack.me/support/infinite-scroll/ * See: https://jetpack.me/support/responsive-videos/ */ function astrid_jetpack_setup() { // Add theme support for Infinite Scroll. add_theme_support( 'infinite-scroll', array( 'container' => 'main', 'render' => 'astrid_infinite_scroll_render', 'footer' => 'page', ) ); // Add theme support for Responsive Videos. add_theme_support( 'jetpack-responsive-videos' ); } add_action( 'after_setup_theme', 'astrid_jetpack_setup' ); /** * Custom render function for Infinite Scroll. */ function astrid_infinite_scroll_render() { while ( have_posts() ) { the_post(); if ( is_search() ) : get_template_part( 'template-parts/content', 'search' ); else : get_template_part( 'template-parts/content', get_post_format() ); endif; } }
Save