Ahoj,
chci na redakčním systému Wordpress, dělat v sidebaru výpis dalších článků ze stejné rubriky.
Našel jsem tento kód, který jsem použil:
<?php
/* Začátek příbuzných článků */
// this is where 10 headlines from the current category get printed
if ( is_single() ) :
global $post;
$categories = get_the_category();
foreach ($categories as $category) :
?>
<h4>Další články z rubriky</h4>
<ul class="bullets">
<?php
$posts = get_posts('numberposts=10&category='. $category->term_id);
foreach($posts as $podobny) :
?>
<li><a href="<?php echo get_permalink($podobny->ID); ?>"><?php echo get_the_title($podobny->ID); ?></a></li>
<?php endforeach; ?>
<?php if ( is_home() ) { ?>
<li><h3><?php
// this is where the name of the News (or whatever) category gets printed
wp_list_categories('include=8&title_li=&style=none'); ?></h3>
<?php
// this is where the last three headlines are pulled from the News (or whatever) category
query_posts('showposts=3&cat=8');
?>
<ul class="bullets">
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
</li>
/* Konec příbuzných článků */
<?php }
?>
<li><strong><a href="<?php echo get_category_link($category->term_id);?>" title="Další články z rubriky <?php echo $category->name; ?>">Další články z rubriky '<?php echo $category->name; ?>' »</a></strong></li>
</ul>
</li>
<?php endforeach; endif ; ?>
Zdá se však, že je to nějaké neukončené, protože mi to rozhazuje desing. V programování jsem úplná lama, tak bych potřeboval poradit, jak přesně by měl kód vypadat, aby bylo vše v pořádně.
Díky všam, který tomu věnují svůj čas.