http://www.yeteneklieller.com/
sştem açılmıyor arkadaşlar neden acaba yardım edecek var mı
Sitemdeki Sorun Basit Bir Sorun ama Yapamadım Ücretli Ücretsiz Yardım
8
●389
- 25-05-2015, 13:09:35hocam temanın yedeği yokve özel bir temasatrancali adlı üyeden alıntı: mesajı görüntüle
- 25-05-2015, 18:11:48hocam nasıl yapacagımı ınanın hıc bılmıyorum yardımcı olma sansınız var mıwpmatik adlı üyeden alıntı: mesajı görüntüle
- 25-05-2015, 19:44:01
- 25-05-2015, 22:47:14buyrun hocam bu headerS.SAĞLAM adlı üyeden alıntı: mesajı görüntüle
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html dir="ltr" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/> <title>Yetenekli Eller</title> <link href="<?php echo home_url('/'); ?>favicon.ico" rel="icon" type="image/x-icon"/> <link type="text/css" rel="stylesheet" href="<?php echo home_url('/'); ?>css/style.css" /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type='text/javascript' src='<?php echo home_url('/'); ?>js/jquery-1.7.2.min.js?ver=1.7.2'></script> <script type="text/javascript" src="<?php echo home_url('/'); ?>js/jquery.nivo.slider.js"></script> <script type="text/javascript" src="<?php echo home_url('/'); ?>js/yorumtab.js"></script> <?php wp_head(); ?> </head> <body> <script type="text/javascript"> jQuery(window).load(function() { // nivoslider init jQuery('#slider').nivoSlider({ effect:'random', slices: 35, animSpeed: <?php echo get_theme_option("gecishizi");?>, directionNavHide: true, pauseTime: 2000, controlNav: false }); }); </script> <div id="body-wrapper"> <div id="outer-wrapper"> <div id="header-wrapper"> <div id="header"><div class="widget"> <div id="header-inner"> <a href="<?php echo home_url('/'); ?>"><img src="<?php echo home_url('/'); ?>images/logo.png" /></a> </div> </div></div> <div id="header2"> <div class="gunlukyazi"> <p><?php echo get_theme_option("satir1");?></p> <p><?php echo get_theme_option("satir2");?></p> <p><?php echo get_theme_option("satir3");?></p> <p><?php echo get_theme_option("satir4");?></p> <p><?php echo get_theme_option("satir5");?></p> <p><?php echo get_theme_option("satir6");?></p> </div> </div> <div style="clear:both;"></div> <div id="menu"> <div class="widget-content"> <?php wp_nav_menu( array( 'container' => '' ) ); ?> <div class="clear"></div> </div> </div> </div> <div id="content-wrapper"> <div id="main-wrapper"> <div class="main" id="main"><div class="widget blog"> <div id="slider-wrap"> <div id="slider" class="nivoSlider"> <?php $args = array( 'posts_per_page' => get_theme_option('slideradet'), 'orderby' => 'rand' ); $rand_posts = get_posts( $args ); foreach ( $rand_posts as $post ) : setup_postdata( $post ); ?> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php $thumb = get_post_meta($post->ID,'thumb', true); if($thumb != "") { ?> <img src="<?php echo home_url('/'); ?>timthumb.php?src=<?php echo $thumb; ?>&w=620&h=290&zc=0" alt="<?php the_title(); ?>" /> <?php }else{ ?> <img src="<?php echo home_url('/'); ?>timthumb.php?src=<?php echo catch_that_image() ?>&w=620&h=290&zc=0" alt="<?php the_title(); ?>" /> <?php } ?></a> <?php endforeach; wp_reset_postdata(); ?> </div> <div class="clear"></div> </div>
buda index
<?php get_header(); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="post">
<h3 class="post-title entry-title"><a href="<?php the_permalink()?>"><?php the_title(); ?></a></h3>
<div class="postmeta-primary">
<span class="meta_date"><?php the_time('j F Y') ?></span>
<span class="meta_categories"><?php the_category(','); ?></span> <span class="meta_comments"><?php comments_number( 'Yorum yapılmamıÅ', '1 Yorum', '% Yorum' ); ?></span>
</div>
<div class="post-body">
<div style="clear: both; text-align: center; float:left;">
<a href="<?php the_permalink()?>" title="<?php the_title(); ?>" style="margin-right: 1em;">
<?php
$thumb = get_post_meta($post->ID,'thumb', true); if($thumb != "") { ?>
<img src="<?php echo home_url('/'); ?>timthumb.php?src=<?php echo $thumb; ?>&w=170&h=130&zc=0" alt="<?php the_title(); ?>" />
<?php }else{ ?>
<img src="<?php echo home_url('/'); ?>timthumb.php?src=<?php echo catch_that_image() ?>&w=170&h=130&zc=0" alt="<?php the_title(); ?>" />
<?php } ?>
</a>
</div>
<div style="text-align: justify;">
<?php the_excerpt(); ?>
</div>
<div class="readmore">
<a href="<?php the_permalink()?>" title="<?php the_title(); ?>">DEVAMI</a>
</div>
<div style="clear: both;"></div>
</div>
<div id="benzer-yazilar">
<h2>Bunlarda ilginizi çekebilir:</h2>
<ul>
<?php
$categories = get_the_category($post->ID);
if ($categories) {
$category_ids = array();
foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
$args=array(
'category__in' => $category_ids,
'post__not_in' => array($post->ID),
'showposts'=>5,
'caller_get_posts'=>1
);
$my_query = new wp_query($args);
if( $my_query->have_posts() ) {
echo '';
while ($my_query->have_posts()) {
$my_query->the_post();
?>
<li><a href="<?php the_permalink()?>" title="<?php the_title(); ?>">
<?php
$thumb = get_post_meta($post->ID,'thumb', true); if($thumb != "") { ?>
<img src="<?php echo home_url('/'); ?>timthumb.php?src=<?php echo $thumb; ?>&w=100&h=100&zc=0" alt="<?php the_title(); ?>" />
<?php }else{ ?>
<img src="<?php echo home_url('/'); ?>timthumb.php?src=<?php echo catch_that_image() ?>&w=100&h=100&zc=0" alt="<?php the_title(); ?>" />
<?php } ?>
<br /><?php echo yazikes($post->post_title,25); ?></a></li>
<?php
}
echo '';
}
wp_reset_query();
}
?>
</ul>
</div>
<div class="clear"></div>
</div>
<?php endwhile; ?>
<div id="blog-pager">
<span id="blog-pager-newer-link">
<li class="blog-pager-newer-link"><?php previous_posts_link( __( 'Ãnceki Sayfa ' ) ); ?></li>
</span>
<span id="blog-pager-older-link">
<li class="blog-pager-older-link"><?php next_posts_link( __( 'Sonraki Sayfa' ) ); ?></li>
</span>
<a class="home-link" href="<?php echo home_url('/'); ?>">Ana Sayfa</a>
</div>
<?php else : ?>
<?php endif; ?>
<div class="clear"></div>
</div></div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>