İndex'in kodları buyrun
<?php get_header(); ?>
<!-- BEGIN content -->
<div id="content">
<!-- begin featured -->
<div class="featured">
<?php
$tmp_query = $wp_query;
query_posts('showposts=1&cat='.get_cat_ID(dp_settings('featured')));
while (have_posts()) : the_post();
?>
<h2>Hoşgeldiniz</h2>
<a class="thumb" href="<?php the_permalink(); ?>"><?php dp_attachment_image($post->ID, 'medium', 'alt="' . $post->post_title . '"'); ?></a>
<p>Organizasyonlar, Davetler , Toplantılar, Saha Satış ve Tanıtımı, Promosyon, Aktivite çalışmalarınızda, prezentable ve enerjik kadromuzla hizmetinizdeyiz.
Güvenilir, şeffaf ve dürüst olmaya, Üstün kaliteli ve artı değeri olan hizmetler vermeye, Müşterilerimizin memnuniyetini her bir diğer organizasyonumuzla artırmaya, Sürekli İyileştirmeden taviz vermeden Kalite Yönetim Sistem Şartlarını uygulamaya Yasal mevzuatın ön gördüğü şartlara uyarak Sosyal ve fiziksel çevreyi özenle korumaya maksimum seviyede çaba gösteren bir şirket olmaya kararlıyız...</p>
<?php
endwhile;
$wp_query = $tmp_query;
?>
<div class="break"></div>
</div>
<!-- end featured -->
<!-- BEGIN recent posts -->
<div class="recent">
<?php
if (have_posts()) :
$count = 2;
while (have_posts()) : the_post();
$count++;
?>
<!-- begin post -->
<div class="<?php if ($count==2) { $count = 0; echo 'f '; } ?>post">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<a class="thumb" href="<?php the_permalink(); ?>"><?php dp_attachment_image($post->ID, 'thumbnail', 'alt="' . $post->post_title . '"'); ?></a>
<p><?php echo dp_clean($post->post_content, 200); ?> (<a href="<?php the_permalink(); ?>">Devamı..</a>)</p>
<p class="date"> <?php the_time('j F Y') ?></p>
</div>
<!-- end post -->
<?php endwhile; ?>
<p class="postnav">
<?php next_posts_link('« Older Entries'); ?>
<?php previous_posts_link('Newer Entries »'); ?>
</p>
<?php else : ?>
<div class="notfound">
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that is not here.</p>
</div>
<?php endif; ?>
<div class="break"></div>
</div>
<!-- END recent posts -->
</div>
<!-- END content -->
<?php get_sidebar(); get_footer(); ?>