Hallo,
ich hab leider nix passendes gefunden. Ich habe folgendes Problem.
Innerhalb einer Kategorie möchte ich bestimmte Artikel zb. (?p=1234) nicht anzeigen lassen.
Hier der Code der entsprechenden categorie.php
PHP
<?php get_header(); ?><?php get_sidebar(); ?>
<div id="content">
<?php is_tag(); ?>
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class="pagetitle"><?printf( __('%s','branfordmagazine'), single_cat_title('', false)); ?></h2>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h2 class="pagetitle">
<?php _e('Posts Tagged','branfordmagazine'); ?>
‘
<?php single_tag_title(); ?>
’</h2>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class="pagetitle"><?printf( __('Archive for %s','branfordmagazine'), get_the_time(__('F jS, Y','branfordmagazine'))); ?></h2>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class="pagetitle"><?printf( __('Archive for %s','branfordmagazine'), get_the_time(__('F Y','branfordmagazine'))); ?></h2>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h2 class="pagetitle"><?printf( __('Archive for %s','branfordmagazine'), get_the_time('Y')); ?></h2>
<?php /* If this is a search */ } elseif (is_search()) { ?>
<h2 class="pagetitle">
<?php __('Search Results','branfordmagazine'); ?>
</h2>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h2 class="pagetitle">
<?php _e('All entries by this author','branfordmagazine'); ?>
</h2>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h2 class="pagetitle">
<?php _e('Blog Archives','branfordmagazine'); ?>
</h2>
<?php } ?>
<div class="navigation">
<div class="alignleft">
<?php next_posts_link(__('Ältere Meldungen','branfordmagazine')) ?>
</div>
<div class="alignright">
<?php previous_posts_link(__('Neuere Meldungen','branfordmagazine')) ?>
</div>
</div>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h4 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php __('Permanent Link to','branfordmagazine');?> <?php the_title(); ?>">
<?php the_title(); ?>
</a></h4>
<small>
<?php the_time(__('l, j. F Y','branfordmagazine')); ?>
|
<?php _e('By','branfordmagazine');?>
<?php the_author_posts_link('namefl'); ?>
|
<?php _e('Category:','branfordmagazine');?>
<?php the_category(', ') ?>
<?php edit_post_link('Edit', ' | ', ''); ?>
</small>
<div class="entry_news">
<?php the_excerpt() ?>
</div>
<p class="postmetadata">
<?php the_tags('Tags: ', ', ', '<br />'); ?>
<?php _e('Veroeffentlicht in','branfordmagazine');?>
<?php the_category(', '); ?>
|
<?php comments_popup_link(__ ('Keine Kommentare »', 'branfordmagazine'), __ ('1 Kommentar »', 'branfordmagazine'), __ngettext ('% comment', '% comments', get_comments_number (),'branfordmagazine')); ?>
</p>
<hr />
<br />
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft">
<?php next_posts_link(__('Ätere Meldungen','branfordmagazine')) ?>
</div>
<div class="alignright">
<?php previous_posts_link(__('Neuere Meldungen','branfordmagazine')) ?>
</div>
</div>
<?php else : ?>
<h2 class="center">
<?php __('Not Found','branfordmagazine') ?>
</h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<?php endif; ?>
</div>
<?php get_footer(); ?>
Alles anzeigen
Ich finde die Stelle nicht wo ich "&exclude=1234" einfügen kann wie beim Ausschliessen von Seiten. *grübel*