İlgine teşekkürler... O olayı şöyle anlatayım. KG klasörünün altında farklı bir database ile sitenin kırgızcası var. Aynı haberler orada olduğu için resimleri kırgızca sayfanın dosyalarından görüyor. Sitenin home sayfasına ait code ise şu şekilde:
<?php get_header(); ?>
<?php
if ( function_exists('dsq_comment_count') ) {
remove_action('loop_end', 'dsq_comment_count');
add_action('arras_above_index_news_post', 'dsq_comment_count');
}
$stickies = get_option('sticky_posts');
?>
<div id="content" class="section">
<?php arras_above_content() ?>
<?php if ( ( $featured1_cat = arras_get_option('featured_cat1') ) !== '' && $featured1_cat != '-1' ) : ?>
<!-- Featured Articles #1 -->
<div class="featured clearfix">
<?php
if ($featured1_cat == '-5') {
if (count($stickies) > 0)
$query = array('post__in' => $stickies, 'showposts' => arras_get_option('featured1_count') );
} elseif ($featured1_cat == '0') {
$query = 'showposts=' . arras_get_option('featured1_count');
} else {
$query = 'showposts=' . arras_get_option('featured1_count') . '&cat=' . $featured1_cat;
}
$q = new WP_Query( apply_filters('arras_featured1_query', $query) );
?>
<div id="controls" style="display: none;">
<a href="" class="prev"><?php _e('Prev', 'arras') ?></a>
<a href="" class="next"><?php _e('Next', 'arras') ?></a>
</div>
<div id="featured-slideshow">
<?php $count = 0; ?>
<?php if ($q->have_posts()) : while ($q->have_posts()) : $q->the_post(); ?>
<div <?php if ($count != 0) echo 'style="display: none"'; ?>>
<?php
if ( arras_get_option('layout') == '3c-r-fixed' || arras_get_option('layout') == '3c-fixed' ) {
$w = ARRAS_3COL_FULL_WIDTH;
$h = ARRAS_3COL_FULL_HEIGHT;
} else {
$w = ARRAS_2COL_FULL_WIDTH;
$h = ARRAS_2COL_FULL_HEIGHT;
}
?>
<a class="featured-article" href="<?php the_permalink(); ?>" rel="bookmark" style="background: url(<?php echo arras_get_thumbnail($w, $h); ?>) no-repeat;">
<span class="featured-entry">
<span class="entry-title"><?php the_title(); ?></span>
<span class="entry-summary"><?php echo arras_strip_content(get_the_excerpt(), 20); ?></span>
<span class="progress"></span>
</span>
</a>
</div>
<?php $count++; endwhile; endif; ?>
</div>
</div>
<?php endif; ?>
<!-- Featured Articles #2 -->
<?php if (!$paged) : if ( ($featured2_cat = arras_get_option('featured_cat2') ) !== '' && $featured2_cat != '-1' ) : ?>
<?php
if ($featured2_cat == '-5') {
if (count($stickies) > 0)
$query2 = array('post__in' => $stickies, 'showposts' => arras_get_option('featured2_count') );
} elseif ($featured2_cat == '0') {
$query2 = 'showposts=' . arras_get_option('featured2_count');
} else {
$query2 = 'showposts=' . arras_get_option('featured2_count') . '&cat=' . $featured2_cat;
}
$q2 = new WP_Query( apply_filters('arras_featured2_query', $query2) );
arras_get_posts('featured2', $q2);
?>
<?php endif; endif; ?>
<?php arras_above_index_news_post() ?>
<!-- Adv -->
<?php arras_below_index_news_post() ?>
<?php $sidebars = wp_get_sidebars_widgets(); ?>
<div id="bottom-content-1">
<?php if ( $sidebars['sidebar-4'] ) : ?>
<ul class="clearfix xoxo">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom Content #1') ) : ?>
<?php endif; ?>
</ul>
<?php endif; ?>
</div>
<div id="bottom-content-2">
<?php if ( $sidebars['sidebar-5'] ) : ?>
<ul class="clearfix xoxo">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom Content #2') ) : ?>
<?php endif; ?>
</ul>
<?php endif; ?>
</div>
<?php arras_below_content() ?>
</div><!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>