Hiho,
hier kommt Dein Retter in der Not :PPPPPPPPPPPP
PHP
<?php
/**
* @package Wunschname
*/
get_header();
$cat = get_the_category();
?>
<?php if($cat[0]->cat_ID == 3) { ?>
<?php while(have_posts()) { ?>
<?php the_post(); ?>
<div id="content">
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<div class="entry">
<?php the_content('<p class="serif">' . __('Read the rest of this entry »', 'kubrick') . '</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
</div>
<?php } ?>
<?php } else if($cat[0]->cat_ID == 4) { ?>
<?php while(have_posts()) { ?>
<?php the_post(); ?>
<div id="content">
abcdefg
</div>
<?php } ?>
<?php } else if($cat[0]->cat_ID == 1) { ?>
<?php while(have_posts()) { ?>
<?php the_post(); ?>
<div id="content">
uvgxy
</div>
<?php } ?>
<?php } ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen