'main', 'footer' => 'content', 'render' => 'hemingway_rewritten_render', 'footer_widgets' => array( 'sidebar-4', 'sidebar-2', 'sidebar-3' ), ) ); // Add theme support for Responsive Videos. add_theme_support( 'jetpack-responsive-videos' ); // Add theme support for Content Options. add_theme_support( 'jetpack-content-options', array( 'blog-display' => 'content', 'post-details' => array( 'stylesheet' => 'hemingway-rewritten-style', 'date' => '.posted-on, .byline .sep, body:not(.group-blog) .comments-link .sep', 'categories' => '.entry-categories', 'tags' => '.entry-tags', 'author' => '.byline', ), 'featured-images' => array( 'archive' => true, 'post' => true, 'page' => true, 'fallback' => true, 'fallback-default' => false, ), ) ); } add_action( 'after_setup_theme', 'hemingway_rewritten_jetpack_setup' ); function hemingway_rewritten_render() { while( have_posts() ) { the_post(); $contentpart = get_post_format(); if ( 'image' == $contentpart || 'video' == $contentpart ) $contentpart = 'media'; get_template_part( 'content', $contentpart ); } } /** * Show/Hide Featured Image on single posts view outside of the loop. */ function hemingway_rewritten_jetpack_featured_image_display() { if ( ! function_exists( 'jetpack_featured_images_remove_post_thumbnail' ) ) { return true; } else { $options = get_theme_support( 'jetpack-content-options' ); $featured_images = ( ! empty( $options[0]['featured-images'] ) ) ? $options[0]['featured-images'] : null; $settings = array( 'post-default' => ( isset( $featured_images['post-default'] ) && false === $featured_images['post-default'] ) ? '' : 1, 'page-default' => ( isset( $featured_images['page-default'] ) && false === $featured_images['page-default'] ) ? '' : 1, ); $settings = array_merge( $settings, array( 'post-option' => get_option( 'jetpack_content_featured_images_post', $settings['post-default'] ), 'page-option' => get_option( 'jetpack_content_featured_images_page', $settings['page-default'] ), ) ); if ( ( ! $settings['post-option'] && is_single() ) || ( ! $settings['page-option'] && is_singular() && is_page() ) ) { return false; } else { return true; } } } /** * Custom function to check for a post thumbnail; * If Jetpack is not available, fall back to has_post_thumbnail() */ function hemingway_rewritten_has_post_thumbnail( $post = null ) { if ( function_exists( 'jetpack_has_featured_image' ) ) { return jetpack_has_featured_image( $post ); } else { return has_post_thumbnail( $post ); } } /** * Custom function to get the URL of a post thumbnail; * If Jetpack is not available, fall back to wp_get_attachment_image_src() */ function hemingway_rewritten_get_attachment_image_src( $post_id, $post_thumbnail_id, $size ) { if ( function_exists( 'jetpack_featured_images_fallback_get_image_src' ) ) { return jetpack_featured_images_fallback_get_image_src( $post_id, $post_thumbnail_id, $size ); } else { $attachment = wp_get_attachment_image_src( $post_thumbnail_id, $size ); // Attachment array $url = $attachment[0]; // Attachment URL return $url; } }