اينم كدهاي single.php :`
<?php include ("header.php"); ?>
<div id="main">
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php $price = get_post_meta($post->ID, "price", true);$post_excerpt = $post->post_content;?>
<div id="fullprod">
<div id="fulltitle"><?php the_title(); ?></div>
<div class="fulldesc">
<?php the_title(); ?> | نوشته شده توسط <?php the_author(); ?> در تاریخ <?php the_time('Y/m/d'); ?>
</span> <span><?php echo $price; ?> </span>
</div>
<div id="fulltext">
<?php the_content(__('(ادامه مطلب ...)')); ?>
<hr/>
<br/>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<p><?php _e('متاسفانه فعلا در اين مسير ويلايي در سايت ثبت نشده است...به زودي ويلاهاي بيشتري در سايت قرار ميگيرد'); ?></p>
<?php endif; ?>
</div>
</div>
<div id="fulltags"></div>
<div id="fullfoot"></div>
</div>
<div id="rightcolumn">
<!-- begin right sidebar -->
<div>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?> <?php endif; ?>
</div>
<!-- end right sidebar -->
</div></div>
<div id="footertop">
</div>
<?php include ("footer.php"); ?>`
اينم كدهاي page.php :
<?php include ("header.php"); ?>
<div id="main">
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="fullprod">
<div id="fulltitle"><?php the_title(); ?></div>
<div id="fulltext">
<?php the_content(__('(ادامه مطلب ...)')); ?>
<?php endwhile; else: ?>
<p><?php _e('متاسفانه فعلا در اين مسير ويلايي در سايت ثبت نشده است...به زودي ويلاهاي بيشتري در سايت قرار ميگيرد'); ?></p>
<?php endif; ?>
</div>
</div>
<div id="fulltags"></div>
<div id="fullfoot"></div>
</div>
<div id="rightcolumn">
<!-- begin right sidebar -->
<div>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?> <?php endif; ?>
</div>
<!-- end right sidebar -->
</div>
</div>
<div id="footertop">
</div>
<?php include ("footer.php"); ?>
اينم كدهاي index.php :
<?php include ("header.php"); ?>
<div id="main">
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php $postimg = get_post_meta($post->ID, "postimg", true);$post_excerpt = $post->post_content;?>
<?php $price = get_post_meta($post->ID, "price", true);$post_excerpt = $post->post_content;?>
<div class="prod">
<div class="ptitle">
" ><?php the_title(); ?>
</div>
<div class="ptext">
<img width="155px" height="180px" class="pimg" alt="<?php the_title(); ?>" src="<?php echo $postimg; ?>" />
<?php echo dp_clean($post->post_content, 450); ?>
</div>
<div class="pdesc"> <span><?php echo $price; ?> </span> <span> </span>
</div>
" target=_blank class="pbuy">
<img width="120px" height="30px" src="<?php bloginfo('template_directory'); ?>/images/bs.gif"/>
" class="pmore"><img width="120px" height="30px" src="<?php bloginfo('template_directory'); ?>/images/bs.gif"/>
</div>
<?php endwhile; else: ?>
<p><?php _e('متاسفانه فعلا در اين مسير ويلايي در سايت ثبت نشده است...به زودي ويلاهاي بيشتري در سايت قرار ميگيرد'); ?></p>
<?php endif; ?>
</div>
<div id="rightcolumn">
<!-- begin right sidebar -->
<div>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?> <?php endif; ?>
</div>
<!-- end right sidebar -->
</div>
<div id="footertop">
</div>
<?php include ("footer.php"); ?>