'main', 'footer' => 'page', ) ); // Create custom image sizes for Site Logo and Testimonials. add_image_size( 'billie-jetpack-logo', 200, 200 ); add_image_size( 'billie-jetpack-testimonial', 100, 100 ); /* Support for Jetpack logo */ add_theme_support( 'site-logo', array( 'size' => 'billie-jetpack-logo' ) ); /** * Support for Jetpack featured-content. * * @link Learn more: https://jetpack.com/support/featured-content/#theme-support */ add_theme_support( 'featured-content', array( 'filter' => 'billie_get_featured_posts', 'max_posts' => 6, 'post_types' => array( 'post', 'page' ), ) ); } add_action( 'after_setup_theme', 'billie_jetpack_setup' ); /** * Getter function for the Jetpack featured content. */ function billie_get_featured_posts() { return apply_filters( 'billie_get_featured_posts', array() ); } /** * Checks if there is at least one featured post. * * @param int $minimum The minimum number of posts to check for. */ function billie_has_featured_posts( $minimum ) { if ( is_paged() ) { return false; } $minimum = absint( $minimum ); $featured_posts = apply_filters( 'billie_get_featured_posts', array() ); if ( ! is_array( $featured_posts ) ) { return false; } if ( $minimum > count( $featured_posts ) ) { return false; } return true; } /** * Remove the jetpack likes and sharing_display filter so that we can reposition them to our post footer. */ function billie_move_share() { remove_filter( 'the_content', 'sharing_display', 19 ); remove_filter( 'the_excerpt', 'sharing_display', 19 ); if ( class_exists( 'Jetpack_Likes' ) ) { remove_filter( 'the_content', array( Jetpack_Likes::init(), 'post_likes' ), 30, 1 ); } } add_action( 'loop_start', 'billie_move_share' );