Hallo,
Wie bekomme ich es hin, dass bei der Category 271 die Kategorie und "Keine Kommentare", "1 Kommentar", etc. NICHT angezeigt wird? Die Zeitangebe nicht anzuzeigen, habe ich, wie im Code zu sehen, erfolgreich hin bekommen. Das andere schaffe ich nicht.
PHP
<h1><?php the_title(); ?></h1>
<p class="postmetadata"><?php if ($wpzoom_singlepost_author == 'Show') { ?>By <?php the_author_posts_link(); } if ($wpzoom_singlepost_date == 'Show') { ?> Am <?php if (! in_category('271')) { the_time(); } ?> in <?php the_category(', '); } ?> / <a href="<?php the_permalink() ?>#commentspost" title="Jump to the comments"><?php comments_number(__('Keine Kommentare', 'wpzoom'),__('1 comment', 'wpzoom'),__('% comments', 'wpzoom')); ?></a><?php edit_post_link( __('EDIT', 'wpzoom'), ' / ', ''); ?></p>
Dann möchte ich hier die Tags ausblenden, ebenfalls Kategorie 271
PHP
<?php if ($wpzoom_singlepost_tag == 'Show') { ?>
<div class="title"><h2>Tags</h2></div><!-- end .title -->
<?php the_tags( '<p class="tags">', ', ', '</p>'); } ?>
Hier möchte ich related Posts ausblenden, ebenso Kategorie 271.
Wäre super, wenn jemand helfen könnte. Danke