Hallo, ich habe schon gesucht - aber der fehler ist so blöd - der scheint hier noch nicht aufgetaucht zu sein ...
Egal welchen Artikel oder welche Seite ich öffnen möchte - es öffnet sich immer der gleiche Artikel. Allerdings ist die URL die die ich haben wollte.
Also: URL korrekt, Artikel falsch.
Wie geht das denn???
... Ergänzung ...
ich hab den "Fehler" gefunden.
Es muss was hiermit zu tun haben:
PHP
<?php { ?>
<?php query_posts("showposts=1&cat=7");
$wp_query->is_category = false;
$wp_query->is_archive = false;
$wp_query->is_home = true;
?>
<?php while (have_posts()) : the_post(); ?>
<?php
// this grabs the image filename
$values = get_post_custom_values("thumbnailimg");
// this checks to see if an image file exists
if (isset($values[0])) {
?>
<a class="produktimg" href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><img src="<?php $values = get_post_custom_values("thumbnailimg"); echo $values[0]; ?>" alt="<?php the_title(); ?>" /></a><br>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></p>
<?php } ?>
<?php endwhile; ?>
<?php } ?>
Alles anzeigen