/home/arranoyd/stopostoprirodno/wp-content/themes/bridge/templates/blog_large_image-loop.php
<?php
$bridge_qode_options = bridge_qode_return_global_options();
$bridge_qode_blog_hide_comments = "";
if (isset($bridge_qode_options['blog_hide_comments'])) {
$bridge_qode_blog_hide_comments = $bridge_qode_options['blog_hide_comments'];
}
$bridge_qode_blog_hide_author = "";
if (isset($bridge_qode_options['blog_hide_author'])) {
$bridge_qode_blog_hide_author = $bridge_qode_options['blog_hide_author'];
}
$bridge_qode_like = "on";
if (isset($bridge_qode_options['qode_like'])) {
$bridge_qode_like = $bridge_qode_options['qode_like'];
}
?>
<?php
$bridge_qode_post_format = get_post_format();
?>
<?php
switch ($bridge_qode_post_format) {
case "video":
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post_content_holder">
<div class="post_image">
<?php $bridge_qode_video_type = get_post_meta(get_the_ID(), "video_format_choose", true);?>
<?php if($bridge_qode_video_type == "youtube") { ?>
<iframe name="fitvid-<?php the_ID(); ?>" src="//www.youtube.com/embed/<?php echo get_post_meta(get_the_ID(), "video_format_link", true); ?>?wmode=transparent" wmode="Opaque" width="805" height="403" allowfullscreen></iframe>
<?php } elseif ($bridge_qode_video_type == "vimeo"){ ?>
<iframe name="fitvid-<?php the_ID(); ?>" src="//player.vimeo.com/video/<?php echo get_post_meta(get_the_ID(), "video_format_link", true); ?>?title=0&byline=0&portrait=0" frameborder="0" width="800" height="450" allowfullscreen></iframe>
<?php } elseif ($bridge_qode_video_type == "self"){ ?>
<div class="video">
<div class="mobile-video-image" style="background-image: url(<?php echo get_post_meta(get_the_ID(), "video_format_image", true); ?>);"></div>
<div class="video-wrap" >
<video class="video" poster="<?php echo get_post_meta(get_the_ID(), "video_format_image", true); ?>" preload="auto">
<?php if(get_post_meta(get_the_ID(), "video_format_webm", true) != "") { ?> <source type="video/webm" src="<?php echo get_post_meta(get_the_ID(), "video_format_webm", true); ?>"> <?php } ?>
<?php if(get_post_meta(get_the_ID(), "video_format_mp4", true) != "") { ?> <source type="video/mp4" src="<?php echo get_post_meta(get_the_ID(), "video_format_mp4", true); ?>"> <?php } ?>
<?php if(get_post_meta(get_the_ID(), "video_format_ogv", true) != "") { ?> <source type="video/ogg" src="<?php echo get_post_meta(get_the_ID(), "video_format_ogv", true); ?>"> <?php } ?>
<object width="320" height="240" type="application/x-shockwave-flash" data="<?php echo get_template_directory_uri(); ?>/js/flashmediaelement.swf">
<param name="movie" value="<?php echo get_template_directory_uri(); ?>/js/flashmediaelement.swf" />
<param name="flashvars" value="controls=true&file=<?php echo get_post_meta(get_the_ID(), "video_format_mp4", true); ?>" />
<img itemprop="image" src="<?php echo get_post_meta(get_the_ID(), "video_format_image", true); ?>" width="1920" height="800" title="<?php echo esc_html__('No video playback capabilities', 'bridge'); ?>" alt="<?php echo esc_html__('Video thumb', 'bridge') ?>" />
</object>
</video>
</div></div>
<?php } ?>
</div>
<div class="post_text">
<div class="post_text_inner">
<h2 itemprop="name" class="entry_title"><span itemprop="dateCreated" class="date entry_date updated"><?php the_time('d M'); ?><meta itemprop="interactionCount" content="UserComments: <?php echo get_comments_number(bridge_qode_get_page_id()); ?>"/></span> <a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="post_info">
<span class="time"><?php esc_html_e('Posted at','bridge'); ?> <?php the_time('H:i'); ?><?php esc_html_e('h','bridge'); ?></span>
<?php esc_html_e('in','bridge'); ?> <?php the_category(', '); ?>
<?php if($bridge_qode_blog_hide_author == "no") { ?>
<span class="post_author">
<?php esc_html_e('by','bridge'); ?>
<a itemprop="author" class="post_author_link" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author_meta('display_name'); ?></a>
</span>
<?php } ?>
<?php if($bridge_qode_blog_hide_comments != "yes"){ ?>
<span class="dots"><i class="fa fa-square"></i></span><a itemprop="url" class="post_comments" href="<?php comments_link(); ?>" target="_self"><?php comments_number('0 ' . esc_html__('Comments','bridge'), '1 '.esc_html__('Comment','bridge'), '% '.esc_html__('Comments','bridge') ); ?></a>
<?php } ?>
<?php if( $bridge_qode_like == "on" ) { ?>
<span class="dots"><i class="fa fa-square"></i></span><div class="blog_like">
<?php if( function_exists('bridge_core_like') ) bridge_core_like(); ?>
</div>
<?php } ?>
<?php if(isset($bridge_qode_options['enable_social_share']) && $bridge_qode_options['enable_social_share'] == "yes") { ?>
<span class="dots"><i class="fa fa-square"></i></span><?php echo do_shortcode('[social_share]'); ?>
<?php } ?>
</div>
<?php bridge_qode_excerpt(); ?>
<?php if ( ! post_password_required() ) { ?>
<div class="post_more">
<a itemprop="url" href="<?php the_permalink(); ?>" class="qbutton small"><?php esc_html_e('Read More','bridge'); ?></a>
</div>
<?php } ?>
</div>
</div>
</div>
</article>
<?php
break;
case "audio":
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post_content_holder">
<div class="post_image">
<audio class="blog_audio" src="<?php echo get_post_meta(get_the_ID(), "audio_link", true) ?>" controls="controls">
<?php esc_html_e("Your browser don't support audio player","bridge"); ?>
</audio>
</div>
<div class="post_text">
<div class="post_text_inner">
<h2 itemprop="name" class="entry_title"><span itemprop="dateCreated" class="date entry_date updated"><?php the_time('d M'); ?><meta itemprop="interactionCount" content="UserComments: <?php echo get_comments_number(bridge_qode_get_page_id()); ?>"/></span> <a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="post_info">
<span class="time"><?php esc_html_e('Posted at','bridge'); ?> <?php the_time('H:i'); ?><?php esc_html_e('h','bridge'); ?></span>
<?php esc_html_e('in','bridge'); ?> <?php the_category(', '); ?>
<?php if($bridge_qode_blog_hide_author == "no") { ?>
<span class="post_author">
<?php esc_html_e('by','bridge'); ?>
<a itemprop="author" class="post_author_link" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author_meta('display_name'); ?></a>
</span>
<?php } ?>
<?php if($bridge_qode_blog_hide_comments != "yes"){ ?>
<span class="dots"><i class="fa fa-square"></i></span><a itemprop="url" class="post_comments" href="<?php comments_link(); ?>" target="_self"><?php comments_number('0 ' . esc_html__('Comments','bridge'), '1 '.esc_html__('Comment','bridge'), '% '.esc_html__('Comments','bridge') ); ?></a>
<?php } ?>
<?php if( $bridge_qode_like == "on" ) { ?>
<span class="dots"><i class="fa fa-square"></i></span><div class="blog_like">
<?php if( function_exists('bridge_core_like') ) bridge_core_like(); ?>
</div>
<?php } ?>
<?php if(isset($bridge_qode_options['enable_social_share']) && $bridge_qode_options['enable_social_share'] == "yes") { ?>
<span class="dots"><i class="fa fa-square"></i></span><?php echo do_shortcode('[social_share]'); ?>
<?php } ?>
</div>
<?php bridge_qode_excerpt(); ?>
<?php if ( ! post_password_required() ) { ?>
<div class="post_more">
<a itemprop="url" href="<?php the_permalink(); ?>" class="qbutton small"><?php esc_html_e('Read More','bridge'); ?></a>
</div>
<?php } ?>
</div>
</div>
</div>
</article>
<?php
break;
case "gallery":
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post_content_holder">
<div class="post_image">
<div class="flexslider">
<ul class="slides">
<?php
$bridge_qode_post_content = get_the_content();
preg_match('/\[gallery.*ids=.(.*).\]/', $bridge_qode_post_content, $bridge_qode_ids);
if(is_array($bridge_qode_ids) && count($bridge_qode_ids) > 0){
$bridge_qode_array_id = explode(",", $bridge_qode_ids[1]);
foreach($bridge_qode_array_id as $bridge_qode_img_id){ ?>
<li><a itemprop="url" href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image( $bridge_qode_img_id, 'full' ); ?></a></li>
<?php } ?>
<?php } ?>
</ul>
</div>
</div>
<div class="post_text">
<div class="post_text_inner">
<h2 itemprop="name" class="entry_title"><span itemprop="dateCreated" class="date entry_date updated"><?php the_time('d M'); ?><meta itemprop="interactionCount" content="UserComments: <?php echo get_comments_number(bridge_qode_get_page_id()); ?>"/></span> <a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="post_info">
<span class="time"><?php esc_html_e('Posted at','bridge'); ?> <?php the_time('H:i'); ?><?php esc_html_e('h','bridge'); ?></span>
<?php esc_html_e('in','bridge'); ?> <?php the_category(', '); ?>
<?php if($bridge_qode_blog_hide_author == "no") { ?>
<span class="post_author">
<?php esc_html_e('by','bridge'); ?>
<a itemprop="author" class="post_author_link" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author_meta('display_name'); ?></a>
</span>
<?php } ?>
<?php if($bridge_qode_blog_hide_comments != "yes"){ ?>
<span class="dots"><i class="fa fa-square"></i></span><a itemprop="url" class="post_comments" href="<?php comments_link(); ?>" target="_self"><?php comments_number('0 ' . esc_html__('Comments','bridge'), '1 '.esc_html__('Comment','bridge'), '% '.esc_html__('Comments','bridge') ); ?></a>
<?php } ?>
<?php if( $bridge_qode_like == "on" ) { ?>
<span class="dots"><i class="fa fa-square"></i></span><div class="blog_like">
<?php if( function_exists('bridge_core_like') ) bridge_core_like(); ?>
</div>
<?php } ?>
<?php if(isset($bridge_qode_options['enable_social_share']) && $bridge_qode_options['enable_social_share'] == "yes") { ?>
<span class="dots"><i class="fa fa-square"></i></span><?php echo do_shortcode('[social_share]'); ?>
<?php } ?>
</div>
<?php bridge_qode_excerpt(); ?>
<?php if ( ! post_password_required() ) { ?>
<div class="post_more">
<a itemprop="url" href="<?php the_permalink(); ?>" class="qbutton small"><?php esc_html_e('Read More','bridge'); ?></a>
</div>
<?php } ?>
</div>
</div>
</div>
</article>
<?php
break;
case "link":
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post_content_holder">
<div class="post_text">
<div class="post_text_inner">
<div class="post_info">
<span itemprop="dateCreated" class="time entry_date updated"><?php esc_html_e('Posted at','bridge'); ?> <?php the_time('d M, H:i'); ?><?php esc_html_e('h','bridge'); ?><meta itemprop="interactionCount" content="UserComments: <?php echo get_comments_number(bridge_qode_get_page_id()); ?>"/></span>
<?php esc_html_e('in','bridge'); ?> <?php the_category(', '); ?>
<?php if($bridge_qode_blog_hide_author == "no") { ?>
<span class="post_author">
<?php esc_html_e('by','bridge'); ?>
<a itemprop="author" class="post_author_link" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author_meta('display_name'); ?></a>
</span>
<?php } ?>
<?php if($bridge_qode_blog_hide_comments != "yes"){ ?>
<span class="dots"><i class="fa fa-square"></i></span><a itemprop="url" class="post_comments" href="<?php comments_link(); ?>" target="_self"><?php comments_number('0 ' . esc_html__('Comments','bridge'), '1 '.esc_html__('Comment','bridge'), '% '.esc_html__('Comments','bridge') ); ?></a>
<?php } ?>
<?php if( $bridge_qode_like == "on" ) { ?>
<span class="dots"><i class="fa fa-square"></i></span><div class="blog_like">
<?php if( function_exists('bridge_core_like') ) bridge_core_like(); ?>
</div>
<?php } ?>
<?php if(isset($bridge_qode_options['enable_social_share']) && $bridge_qode_options['enable_social_share'] == "yes") { ?>
<span class="dots"><i class="fa fa-square"></i></span><?php echo do_shortcode('[social_share]'); ?>
<?php } ?>
</div>
<i class="link_mark fa fa-link pull-left"></i>
<div class="post_title entry_title">
<p><a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
</div>
</div>
</div>
</div>
</article>
<?php
break;
case "quote":
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post_content_holder">
<div class="post_text">
<div class="post_text_inner">
<div class="post_info">
<span itemprop="dateCreated" class="time entry_date updated"><?php esc_html_e('Posted at','bridge'); ?> <?php the_time('d M, H:i'); ?><?php esc_html_e('h','bridge'); ?><meta itemprop="interactionCount" content="UserComments: <?php echo get_comments_number(bridge_qode_get_page_id()); ?>"/></span>
<?php esc_html_e('in','bridge'); ?> <?php the_category(', '); ?>
<?php if($bridge_qode_blog_hide_author == "no") { ?>
<span class="post_author">
<?php esc_html_e('by','bridge'); ?>
<a itemprop="author" class="post_author_link" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author_meta('display_name'); ?></a>
</span>
<?php } ?>
<?php if($bridge_qode_blog_hide_comments != "yes"){ ?>
<span class="dots"><i class="fa fa-square"></i></span><a itemprop="url" class="post_comments" href="<?php comments_link(); ?>" target="_self"><?php comments_number('0 ' . esc_html__('Comments','bridge'), '1 '.esc_html__('Comment','bridge'), '% '.esc_html__('Comments','bridge') ); ?></a>
<?php } ?>
<?php if( $bridge_qode_like == "on" ) { ?>
<span class="dots"><i class="fa fa-square"></i></span><div class="blog_like">
<?php if( function_exists('bridge_core_like') ) bridge_core_like(); ?>
</div>
<?php } ?>
<?php if(isset($bridge_qode_options['enable_social_share']) && $bridge_qode_options['enable_social_share'] == "yes") { ?>
<span class="dots"><i class="fa fa-square"></i></span><?php echo do_shortcode('[social_share]'); ?>
<?php } ?>
</div>
<i class="qoute_mark fa fa-quote-right pull-left"></i>
<div class="post_title entry_title">
<p><a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php echo get_post_meta(get_the_ID(), "quote_format", true); ?></a></p>
<span class="quote_author">— <?php the_title(); ?></span>
</div>
</div>
</div>
</div>
</article>
<?php
break;
default:
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post_content_holder">
<?php if ( has_post_thumbnail() ) { ?>
<div class="post_image">
<a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail('full'); ?>
</a>
</div>
<?php } ?>
<div class="post_text">
<div class="post_text_inner">
<h2 itemprop="name" class="entry_title"><span itemprop="dateCreated" class="date entry_date updated"><?php the_time('d M'); ?><meta itemprop="interactionCount" content="UserComments: <?php echo get_comments_number(bridge_qode_get_page_id()); ?>"/></span> <a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="post_info">
<span class="time"><?php esc_html_e('Posted at','bridge'); ?> <?php the_time('H:i'); ?><?php esc_html_e('h','bridge'); ?></span>
<?php esc_html_e('in','bridge'); ?> <?php the_category(', '); ?>
<?php if($bridge_qode_blog_hide_author == "no") { ?>
<span class="post_author">
<?php esc_html_e('by','bridge'); ?>
<a itemprop="author" class="post_author_link" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author_meta('display_name'); ?></a>
</span>
<?php } ?>
<?php if($bridge_qode_blog_hide_comments != "yes"){ ?>
<span class="dots"><i class="fa fa-square"></i></span><a itemprop="url" class="post_comments" href="<?php comments_link(); ?>" target="_self"><?php comments_number('0 ' . esc_html__('Comments','bridge'), '1 '.esc_html__('Comment','bridge'), '% '.esc_html__('Comments','bridge') ); ?></a>
<?php } ?>
<?php if( $bridge_qode_like == "on" ) { ?>
<span class="dots"><i class="fa fa-square"></i></span><div class="blog_like">
<?php if( function_exists('bridge_core_like') ) bridge_core_like(); ?>
</div>
<?php } ?>
<?php if(isset($bridge_qode_options['enable_social_share']) && $bridge_qode_options['enable_social_share'] == "yes") { ?>
<span class="dots"><i class="fa fa-square"></i></span><?php echo do_shortcode('[social_share]'); ?>
<?php } ?>
</div>
<?php
$link_page_exists = bridge_qode_wp_link_pages_exist();
if( empty($link_page_exists) ) {
bridge_qode_excerpt();
if (!post_password_required()) { ?>
<div class="post_more">
<a itemprop="url" href="<?php the_permalink(); ?>" class="qbutton small"><?php esc_html_e('Read More', 'bridge'); ?></a>
</div>
<?php }
} else{
bridge_qode_wp_link_pages();
} ?>
</div>
</div>
</div>
</article>
<?php
}
?>