960, 'height' => 100 ) ); /** Add support for 3-column footer widgets **/ add_theme_support( 'genesis-footer-widgets', 3 ); /** Add new image sizes **/ add_image_size( 'grid-thumbnail', 100, 100, TRUE ); /** Modify the size of the Gravatar in the author box **/ add_filter( 'genesis_author_box_gravatar_size', 'focus_gravatar_size' ); function focus_gravatar_size( $size ) { return 80; } /** Add after post section **/ add_action( 'genesis_before_comments', 'focus_after_post_box' ); function focus_after_post_box() { if ( is_single() ) require( CHILD_DIR . '/after-post.php' ); } /** Register widget areas **/ genesis_register_sidebar( array( 'id' => 'after-post-left', 'name' => __( 'After Post Left', 'focus' ), 'description' => __( 'This is the left section after a post.', 'focus' ), ) ); genesis_register_sidebar( array( 'id' => 'after-post-right', 'name' => __( 'After Post Right', 'focus' ), 'description' => __( 'This is the right section after a post.', 'focus' ), ) ); add_filter( ‘genesis_post_info’, ‘custom_post_info’ ); function custom_post_info( $post_info ) { $post_info = __(‘By’, ‘genesis’) . ‘ [post_author_posts_link] ‘ . __(‘on’, ‘genesis’) . ‘ [post_date] [post_comments] [post_edit]‘; return $post_info; }