<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); } }
?>
<!-- SUB POST DIVISIONS -->
<div class="subpost_wrap2">
<div class="subpost_wrap">
<div class="subpost_left">
<?php query_posts($query_string . "showposts=$artsee_homepage_posts&order=DESC") ?>
<?php while (have_posts()) : the_post(); $loopcounter++; ?>
<div class="subpost">
<?php $thumb = get_post_meta($post->ID, 'Thumbnail', $single = true); ?>
<?php
if($thumb !== '') { ?>
<img src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $thumb; ?>&h=62&w=62&zc=1&q=100" alt="<?php the_title(); ?>" />
<?php } else { echo ''; } ?>
<div class="sub_article">
<?php
$limit = 40;
$summary = get_the_title();
if (strlen($summary) > $limit)
$summary = substr($summary, 0, strrpos(substr($summary, 0, $limit), ' ')) . '...';
?>
<h3><a href="<?php the_permalink(); ?>"><?php echo $summary; ?></a></h3>
<?php the_content_limit(200); ?>
</div>
</div> <!-- subpost -->
<?php endwhile;?>
</div> <!-- /subpost_left -->
<div class="life_wrap">
<h3 class="aboutustab">About Us</h3>
<div class="aboutus">
<img src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $artsee_about_image; ?>&h=74&w=74&zc=1&q=100" alt="About Us" class="aboutimage" />
<?php echo $artsee_about; ?>
</div>
<div class="jsside">
<?php include(TEMPLATEPATH . '/js-side.php'); ?>
</div> <!-- /jssside -->
<div style="clear: both;"></div>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Homepage Sidebar") ) : ?>
<?php endif; ?>
</div> <!-- /life_wrap -->
<div style="clear: both;"></div>
</div>
<div style="clear: both;"></div>
</div> <!-- /subpost_wrap -->
<img src="<?php bloginfo('stylesheet_directory'); ?>/img/pearl.jpg" style="float: left;" alt="<?php the_title(); ?>" />
Sorun: Aytuğ Çakır - Blog Sayfası pek php bilgim yok o yüzden yardımlarınızı bekliyorum. Şimdiden teşekkürler.
Coldstone teması default.php sorunu yardım beliyorum
5
●509