Участок кода в котором проблема
<?php
global $post;
$categories = get_categories();
foreach ($categories as $category) {
$cat_id = $category->cat_ID;
$games = get_posts('numberposts=6&orderby=rand&category='.$cat_id);
if ($games) : ?>
<div class="single">
<h1><a href="<?php echo get_category_link($cat_id); ?>"><?php echo $category->name; ?></a></h1>
<?php foreach ($games as $post) : ?>
<div class="game_title">
<a href="<?php the_permalink() ?>" class="thumb_link" rel="bookmark" title="<?php echo get_post_meta($post->ID, 'mabp_description', $single = true); ?>" >
<img src="<?php echo get_post_meta($post->ID, "mabp_thumbnail_url", true); ?>" width="85" height="85" alt="<?php echo the_title(); ?>" />
</a>
<br />
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php echo get_post_meta($post->ID, 'mabp_description', $single = true); ?>" >
<?php
if ( (strlen($post->post_title) > 10) ) {
echo substr($post->post_title, 0, 10)."..";
}
else {
the_title();
}
?>
</a>
</div>
<?php endforeach; ?>
<div class="cat_link"><a href="<?php echo get_category_link($cat_id); ?>">More Games</a></div>
</div>
<?php endif;
}
?>
P.S. Если понадобится код всего шаблона: http://rghost.ru/40898563
Вот эти блоки я имел ввиду: http://imglink.ru/pictures/12-10-12/26b717...7d59f571e68.jpg