Ich habe ja das WP Design Revolution Sports 3 ( sky-wrestling.de) Da habe ich neuste News. Da steht leider ein voller News Bericht. Ich möchte aber, dass da mehrere News in Kurzfassungen angezeigt werden.
Hier der php Code dafür.
PHP
<?php get_header(); ?>
<div id="content">
<div id="homepage">
<div class="hpfeatured">
<?php include(TEMPLATEPATH."/tabber.php");?>
</div>
<div id="homepageleft">
<!--This section is currently pulling category ID #1, and can be switched by changing the cat=1 to show whatever category ID you would like in this area.-->
<?php $recent = new WP_Query("cat=1&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(__('[Read more...]'));?>
<div class="hppostmeta">
<p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p>
</div>
<?php endwhile; ?><br />
</div>
<div id="homepageright">
<h4>neuste News</h4>
<!--This section is currently pulling category ID #1, and can be switched by changing the cat=1 to show whatever category ID you would like in this area.-->
<?php $recent = new WP_Query("cat=1&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(__('[Read more...]'));?>
<div class="hppostmeta">
<p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p>
</div>
<?php endwhile; ?><br />
<h4>WWE News</h4>
<!--This section is currently pulling category ID #1, and can be switched by changing the cat=1 to show whatever category ID you would like in this area.-->
<?php $recent = new WP_Query("cat=1&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(__('[Read more...]'));?>
<div class="hppostmeta">
<p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p>
</div>
<?php endwhile; ?><br />
</div>
</div>
<?php include(TEMPLATEPATH."/sidebar_home.php");?>
</div>
<!-- The main column ends -->
<?php get_footer(); ?>
Alles anzeigen
Wäre sehr gut, wenn einer schnell Antworten kann.
Mfg Marius