Merhabalar,
https://goo.gl/6bnddm linkteki sayfa da göreceğiniz üzere normalde başlıklar fotoğrafın üstünde olması gerekirken resmin altında kalıyor. 2. makaleden sonra ise sayfa kayıyor ve footer karışıyor. Sayfanın kodları aşağıda sorunun çözümü hakkında yardımcı olabilen olursa sevinirim.
<?php
/*
Template Name: Blog
*/
if (get_option('wpmod_shop_cat_menu')):
get_header('shop');
else:
get_header('full');
endif; ?>
<?php $images = true; ?>
<div class="container" id="content">
<?php woocommerce_breadcrumb(array( 'delimiter' => ' / ' )); ?>
<div class="col-md-9">
<h2 class="page-title"><?php the_title(); ?></h2>
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'post_type' => 'post',
'paged' => $paged,
'showposts' => 10
);
query_posts($args);
if (have_posts()):
while (have_posts()):
the_post(); ?>
<?php if($images && has_post_thumbnail()): ?>
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'large'); ?>
<figure class="blog-image"><a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><img src="<?php echo $image[0]; ?>" alt="<?php the_title(); ?>" width='730' height='430' /></a><?php echo $icon; ?></figure>
<?php else: ?>
<?php endif; ?>
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<span class="meta-blog">
<?php _e('Kategori:', 'framework'); ?> <?php the_category(', '); ?> | <?php _e('Yazar:', 'framework'); ?> <?php the_author(); ?>
| <?php the_time('F d, Y'); ?> <?php _e('Tarihinde Yayınlandı!', 'framework'); ?>
</span>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php else: ?>
<p>I'm Sorry!</p>
<?php endif; ?>
<div class="col-md-3 sidebar-blog">
<?php get_sidebar('blog'); ?>
</div>
</div>
<?php get_footer(); ?>