با سلام
من میخوام قالب پست های خودم رو بردارم و داخلش تبلیغات بزارم
یعنی استایل پست ها رو داشته باشه ولی داخلش تبلیغات بزارم
خودم هر کاری میکنم و کدها رو میخوام در بیارم تا یه جایی پیش میرم ولی قالب بازم به هم میریزه
لطفا راهنمایی کنید
اینم کد single.php
<?php get_header(); ?>
<?php include(TEMPLATEPATH .'/sidebar_right.php'); ?>
<?php include(TEMPLATEPATH .'/sidebar_left.php'); ?>
<div class="article">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post();?>
<div class="post">
<h2>" title="<?php the_title(); ?>" ><?php the_title(); ?>
<div class="views"> بازدید: <?php if(function_exists('the_views')) { the_views(); } ?></div>
</h2>
<div class="text"><?php the_content(); ?></div><!--text-->
<div class="description_single">
- <?php
$ps_link = get_permalink($post->ID); // Post URL
$ps_title = str_replace(' ','+',get_the_title( $post->ID )); // Post title
$ps_image_dir = get_settings('home') . '/wp-content/themes/charegar/images/share/'; // Images URL?>
- <div class="writer"><?php the_author(); ?></div>
- <div class="data"><?php the_time(__('d F Y ','')) ?></div>
- <div class="comment">نظرات: <?php comments_number( '0', '1', '% ' ); ?></div>
<?php $mid_var = get_post_meta($post->ID, 'dl',true);
if(isset($mid_var) && !empty($mid_var)) : ?>
ID, 'dl',true); ?>" target="_blank" class="downloads">دانلود
<?php endif; ?>
<?php $mid_var = get_post_meta($post->ID, 'hajm',true);
if(isset($mid_var) && !empty($mid_var)) : ?>
<div class="size"><?php echo get_post_meta($post->ID, 'hajm',true); ?></div>
<?php endif; ?>
<div class="password">www.Persiantarh.com</div>
<div class="attention">پسورد تمامی فایل ها http://www.Persiantarh.comمی باشد.</div>
</div><!--description_single-->
</div><!--post-->
<div class="tags"><?php the_tags('', ' ', ''); ?></div><!--tags-->
<?php endwhile; ?>
<div class="title"><?php comments_number( '0', '1', '% ' ); ?> نظر به ثبت رسید ه است</div>
<?php comments_template('', true);?>
<div class="blog_single">
<?php
//for use in the loop, list 5 post titles related to first tag on current post
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$first_tag = $tags[0]->term_id;
$args=array(
'tag__in' => array($first_tag),
'post__not_in' => array($post->ID),
'showposts'=>5,
'caller_get_posts'=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="box">
<?php if(has_post_thumbnail()) : ?>
<?php the_post_thumbnail('related-thumb'); ?>
<?php else: ?>
<img src="<?php bloginfo('template_url'); ?>/images/no-thumb.jpg" width="66" height="50" alt=""/>
<?php endif; ?>
<div class="box_title">" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?>
بازدید: <?php if(function_exists('the_views')) { the_views(); } ?>،
<?php the_time(__('y/m/d ','')) ?></div>
</div><!--box-->
<?php
endwhile;
}
}
?>
</div><!--blog_single--><?php else : ?>
<?php endif; ?>
</div><!--article-->
<?php include(TEMPLATEPATH .'/friend.php'); ?>
<?php include(TEMPLATEPATH .'/slider.php'); ?>
</div><!--middle-->
<div class="footer">
<div class="footer_shadow">
<div class="middle">
<?php include(TEMPLATEPATH .'/footer_widgets.php'); ?>
</div><!--middle-->
</div><!--footer_shadow-->
</div><!--footer-->
<?php include(TEMPLATEPATH .'/copyright.php'); ?>
<?php wp_footer(); ?>
</body>
</html>