Hey Leute,
ich habe (wie bekannt :D ) Hemingway und hätte gerne um jeden Post das angehängte Gestrüp. Also runde Ecken und dieses Bild oben rechts. Wie stelle ich das an und wichtig ist auch das Box 2 das ganze mit einem anderen Bild bekommt, also kein "Magazin" sondern "Podcast". Sprich in Box 1 auf der Page steht "Magazin" und in der rechten Box "Podcast".
hier meine index.php:
PHP
<?php get_header(); ?>
<div id="primary" class="twocol-stories">
<div class="inside">
<?php
// Here is the call to only make two posts show up on the homepage REGARDLESS of your options in the control panel
query_posts('cat=4&showposts=1');
?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="story first">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link zu <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php $hemingway->excerpt() ?>
<div class="details">
Geschrieben um <?php the_time('ga \o\n n/j/y') ?> | <?php comments_popup_link('Keine Kommentare', '1 Kommentar', '% Kommentare'); ?> | <span class="read-on"><a href="<?php the_permalink() ?>">weiterlesen</a></span>
</div>
</div>
<?php endwhile; ?>
<?php $my_query = new WP_Query('cat=10&showposts=1'); ?>
<?php if($my_query->have_posts()) : ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="story">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php $hemingway->excerpt() ?>
<div class="details">
Geschrieben um <?php the_time('ga \o\n n/j/y') ?> | <?php comments_popup_link('Keine Kommentare', '1 Kommentar', '% Kommentare'); ?> | <span class="read-on"><a href="<?php the_permalink() ?>">weiterlesen</a></span>
</div>
</div>
<?php endwhile; endif; ?>
</div>
<?php else: ?>
<h2 class="center">Nicht gefunden</h2>
<p class="center">Sorry, aber du suchst nach etwas, was nicht vorhanden ist.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<div class="clear"></div>
</div>
<!-- [END] #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen