post_excerpt ) ) { $caption = get_post( get_post_thumbnail_id() )->post_excerpt; } ?>
<?php the_title_attribute(); ?> /> '; } // Post Type Icon Html if( 'disable' != $post_icon ) { $post_icon_type = bstone_options( 'post-icon-type' ); $post_icon_size = bstone_options( 'post-icon-size' ); $post_icon_position = bstone_options( 'post-icon-position' ); $post_formate = bstone_get_post_format(); $post_icon_fa = ''; switch ($post_formate) { case "blog": $post_icon_fa = 'fa-file-alt'; break; case "gallery": $post_icon_fa = 'fa-images'; break; case "image": $post_icon_fa = 'fa-image'; break; case "link": $post_icon_fa = 'fa-link'; break; case "quote": $post_icon_fa = 'fa-quote-right'; break; case "video": $post_icon_fa = 'fa-video'; break; case "audio": $post_icon_fa = 'fa-music'; break; case "status": $post_icon_fa = 'fa-comment-alt'; break; case "aside": $post_icon_fa = 'fa-file'; break; default: $post_icon_fa = 'fa-file-alt'; } $post_icon_html = apply_filters( 'bstone_post_blog_icon', '' ); if( 'enable' == $post_icon ) { echo ''.$post_icon_html.''; } else { echo ''.$post_icon_html.''; } } ?>