' . $output_str . '', $output_str ); // WPCS: XSS OK. } } } add_action( 'analytica_blog_post_featured_format', 'analytica_blog_post_get_featured_item' ); /** * To featured image / gallery / audio / video etc. As per the post format. * * @since 1.0.0 * @return mixed */ function analytica_blog_post_get_featured_item() { $post_featured_data = ''; $post_format = get_post_format(); if ( has_post_thumbnail() ) { $post_featured_data = ''; $post_featured_data .= get_the_post_thumbnail(); $post_featured_data .= ''; } else { switch ( $post_format ) { case 'image': break; case 'video': $post_featured_data = analytica_get_video_from_post( get_the_ID() ); break; case 'gallery': $post_featured_data = get_post_gallery( get_the_ID(), false ); if ( isset( $post_featured_data['ids'] ) ) { $img_ids = explode( ',', $post_featured_data['ids'] ); $image_alt = get_post_meta( $img_ids[0], '_wp_attachment_image_alt', true ); $image_url = wp_get_attachment_url( $img_ids[0] ); if ( isset( $img_ids[0] ) ) { $post_featured_data = ''; $post_featured_data .= '' . esc_attr( $image_alt ) . ''; $post_featured_data .= ''; } } break; case 'audio': $post_featured_data = do_shortcode( analytica_get_audios_from_post( get_the_ID() ) ); break; } } echo $post_featured_data; // WPCS: XSS OK. } /** * Blog post Thubmnail, Title & Blog Meta order * * @since 1.0.0 */ function analytica_blog_post_thumbnail_and_title_order() { $blog_post_thumb_title_order = analytica_get_option( 'archive-content-structure' ); if ( is_single() ) { $blog_post_thumb_title_order = analytica_get_option( 'single-post-structure' ); } if ( is_array( $blog_post_thumb_title_order ) ) { // Append the custom class for second element for single post. foreach ( $blog_post_thumb_title_order as $post_thumb_title_order ) { switch ( $post_thumb_title_order ) { // Blog Post Featured Image. case 'image': do_action( 'analytica_blog_archive_featured_image_before' ); analytica_get_blog_post_thumbnail( 'archive' ); do_action( 'analytica_blog_archive_featured_image_after' ); break; // Blog Post Title and Blog Post Meta. case 'title-meta': do_action( 'analytica_blog_archive_title_meta_before' ); analytica_get_blog_post_title_meta(); do_action( 'analytica_blog_archive_title_meta_after' ); break; // Single Post Featured Image. case 'single-image': do_action( 'analytica_blog_single_featured_image_before' ); analytica_get_blog_post_thumbnail( 'single' ); do_action( 'analytica_blog_single_featured_image_after' ); break; // Single Post Title and Single Post Meta. case 'single-title-meta': do_action( 'analytica_blog_single_title_meta_before' ); analytica_get_single_post_title_meta(); do_action( 'analytica_blog_single_title_meta_after' ); break; } } } } /** * Blog post Thumbnail * * @param string $type Type of post. * @since 1.0.0 */ function analytica_get_blog_post_thumbnail( $type = 'archive' ) { if ( 'archive' === $type ) { // Blog Post Featured Image. analytica_get_post_thumbnail( '' ); } elseif ( 'single' === $type ) { // Single Post Featured Image. analytica_get_post_thumbnail(); } } /** * Blog post Thumbnail * * @since 1.0.0 */ function analytica_get_blog_post_title_meta() { // Blog Post Title and Blog Post Meta. do_action( 'analytica_archive_entry_header_before' ); ?>
', esc_url( get_permalink() ) ), '', get_the_id() ); do_action( 'analytica_archive_post_title_after' ); ?>
', '' ); do_action( 'analytica_single_post_title_after' ); do_action( 'analytica_single_post_meta_before' ); analytica_single_get_post_meta(); do_action( 'analytica_single_post_meta_after' ); ?>
post_content ) ); $embeds = apply_filters( 'analytica_get_post_audio', get_media_embedded_in_content( $content ) ); if ( empty( $embeds ) ) { return ''; } // check what is the first embed containg video tag, youtube or vimeo. foreach ( $embeds as $embed ) { if ( strpos( $embed, 'audio' ) ) { return '' . $embed . ''; } } } /** * Get first image from post content * * @since 1.0.0 * @param number $post_id Post id. * @return mixed */ function analytica_get_video_from_post( $post_id ) { $post = get_post( $post_id ); $content = do_shortcode( apply_filters( 'the_content', $post->post_content ) ); $embeds = apply_filters( 'analytica_get_post_audio', get_media_embedded_in_content( $content ) ); if ( empty( $embeds ) ) { return ''; } // check what is the first embed containg video tag, youtube or vimeo. foreach ( $embeds as $embed ) { if ( strpos( $embed, 'video' ) || strpos( $embed, 'youtube' ) || strpos( $embed, 'vimeo' ) ) { return $embed; } } }