'; if ( 'gallery' === $post_format ) { if ( 'inside' === $position_to_content ) { do_action( 'blogsy_post_hero_content_inside', 'gallery' ); } get_template_part( 'template-parts/post/hero/title-section' ); } elseif ( 'video' === $post_format ) { do_action( 'blogsy_post_hero_content_inside', 'video' ); } elseif ( 'audio' === $post_format ) { do_action( 'blogsy_post_hero_content_inside', 'audio' ); } elseif ( 'link' === $post_format ) { do_action( 'blogsy_post_hero_content_inside', 'link' ); } elseif ( 'quote' === $post_format ) { do_action( 'blogsy_post_hero_content_inside', 'quote' ); } elseif ( 'standard' === $post_format && in_array( $standard_post_layout, $standard_inside_layouts ) ) { if ( 1 === $standard_post_layout ) { get_template_part( 'template-parts/post/hero/content-1' ); } else { do_action( 'blogsy_post_hero_content_inside', $standard_post_layout ); } } elseif ( 'standard' === $post_format && in_array( $standard_post_layout, $standard_inside_title ) ) { get_template_part( 'template-parts/post/hero/title-section' ); } elseif ( 0 === $standard_post_layout ) { get_template_part( 'template-parts/post/hero/content-1' ); } echo '';