'main', 'footer' => 'page', ) ); // Add theme support for Site Logo. $args = array( 'size' => 'medium', ); add_theme_support( 'site-logo', $args ); // 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', 'author-bio' => true, 'post-details' => array( 'stylesheet' => 'ecto-style', 'date' => '.posted-on', 'categories' => '.cat-links', 'tags' => '.tags-links', ), ) ); } add_action( 'after_setup_theme', 'ecto_jetpack_setup' ); /** * Return early if Author Bio is not available. */ function ecto_author_bio() { if ( ! function_exists( 'jetpack_author_bio' ) ) { get_template_part( 'content', 'author' ); } else { jetpack_author_bio(); } } /** * Author Bio Avatar Size. */ function ecto_author_bio_avatar_size() { return 72; } add_filter( 'jetpack_author_bio_avatar_size', 'ecto_author_bio_avatar_size' );