ID); $categories = wp_get_post_categories($post->ID,array('fields' => 'all')); $tags = get_the_tags($post->ID); $aleanta_format = get_post_format(); $aleanta_format = !in_array($aleanta_format, array("quote", "gallery", "video")) ? 'standared' : $aleanta_format; if ($aleanta_format == 'video'){ $video_embed_code = get_post_meta( get_the_ID(), 'post_video', true ); $post_has_image = ($video_embed_code) ? true : false; }else{ $post_has_image = ( has_post_thumbnail() ) ? true : false; } if (!has_post_thumbnail()) { $post_img_class = 'post-no-image'; } else { $post_img_class = ''; } $post_footer_class = ''; if (count($categories) > 0 || $tags) { $post_footer_class = ''; }else{ $post_footer_class = 'post-footer-empty'; } ?>