Sidebarı bir türlü yukarı alamadım. wordpress kodlarıyla ilgili sanırım çünkü html halindeyken sorun yoktu. konu çekme gösterme if while kodları sorun cıkarıyor yerlerini tam bilemedim o yüzden sanrıım. bi el atarsanız memnun olurum
index.php
<?php get_header(''); ?>
<!-- Container of Generated Mobile Menu [START] -->
<div class="container">
<div class="row">
<div class="span12 mobile-menu-container">
</div>
</div>
</div>
<!-- Container of Generated Mobile Menu [END] --> <!-- START Welcome Section -->
<section id="welcome_section_boxed">
<div class="container welcome_container_boxed">
<div class="row">
<div class="span12">
<p>
</p>
</div>
</div>
</div>
</section>
<!-- END Welcome Section -->
<!-- START of #main_section -->
<section id="main_section">
<div class="container">
<div class="row">
<!-- START of .blog_posts--> <?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="span9 blog_posts">
<!-- START of one .blog_post-->
<article class="blog_post">
<div class="row">
<!-- START of comments/loveit/views block-->
<div class="span1 comms_loveit hidden-phone">
<div class="post_comments_2">
<?php comments_popup_link(('0'), ('1'), __('%'), '', __('-')); ?>
</div>
<div class="loveit">
<a href="#">12</a>
</div>
<div class="views">
<span><?php if(function_exists('the_views')) { the_views(); } ?></span>
</div>
</div>
<!-- END of comments/loveit/views block-->
<!-- START of .post_info -->
<div class="span8 post_info">
<!-- START of .post_title -->
<div class="post-title">
<h2><a href="<?php the_permalink('') ?>"><?php the_title(''); ?></a></h2>
</div>
<!-- END of .post_title -->
<!-- START of .post_thumb -->
<div class="post-thumb">
<?php if ( has_post_thumbnail() ) {the_post_thumbnail();} else {}?>
</div>
<!-- END of .post_thumb -->
<!-- START of .post_meta -->
<div class="post-meta">
<span class="post_by">by <a href="<?php the_author_link('');?>"><?php the_author(''); ?></a></span>
<span class="post_category">
<a><?php the_category(', ') ?></a>
</span>
<span class="post_date">
on <a><?php the_time('j F Y'); ?></a>
</span>
<span class="post_tags hidden-phone">
<?php the_tags('', ', ', ''); ?>
</span><div class="clearfix"></div>
</div>
<!-- END of .post_meta -->
<!-- START of .post-excerpt -->
<div class="post-excerpt">
<p>
<?php the_content(''); ?>
</p>
<a class="btn pull-right" href="<?php the_permalink('') ?>">read more...</a>
</div>
<!-- END of .post-excerpt -->
<!-- END of .post_info -->
</div> </div> </div>
<?php endwhile; ?></article>
<!-- END of one .blog_post-->
</div>
<?php get_sidebar(''); ?>
<?php endif; ?>
<!-- END of .blog_posts-->
<?php get_footer(); ?>
)