Yıldırım
get_header(vibe_get_header());
if ( have_posts() ) : while ( have_posts() ) : the_post();
$title=get_post_meta(get_the_ID(),'vibe_title',true);
if(!isset($title) || !$title || (vibe_validate($title))){
?>
$breadcrumbs=get_post_meta(get_the_ID(),'vibe_breadcrumbs',true);
if(!isset($breadcrumbs) || !$breadcrumbs || vibe_validate($breadcrumbs)){
vibe_breadcrumbs();
}
?>
}
?>
$template = get_post_meta(get_the_ID(),'vibe_template',true);
if($template == 'right'){
echo '';
}else if($template == 'full'){
echo '';
}else{
echo '';
}
?>
>
}
the_content();
?>
';the_tags('- ','
- ','
'); ?>
&link_before=- &link_after=
&after=
'); ?>
$prenex=get_post_meta(get_the_ID(),'vibe_prev_next',true);
if(vibe_validate($prenex)){
?>
$prev_post = get_previous_post();
$next_post = get_next_post();
echo '- ';
if(!empty($prev_post))
echo ''.get_the_post_thumbnail($prev_post->ID,'thumbnail').''.$prev_post->post_title.'';
echo ' - ';
if(!empty($next_post))
echo ''.get_the_post_thumbnail($next_post->ID,'thumbnail').''.$next_post->post_title.'';
echo ' ';
?>
}
?>
$author = getPostMeta($post->ID,'vibe_author',true);
if(vibe_validate($author)){ ?>
}
comments_template();
endwhile;
endif;
?>
if($template != 'full'){
?>
}
?>
get_footer(vibe_get_footer());
?>