hallo
habe heute mein WP automatisch auf 3.1 updatren lassen, ging eigentlich alles einwandfrei, jedoch zeigt es mir auf meiner startseite die definierten beiträge nicht mehr an.
ich benutze folgenden code:
PHP
<div class="featured">
<h2>Beste Clips</h2>
<div style="padding:15px 0 15px 20px;">
<?php $recent = new WP_Query("&showposts=8&r_sortby=highest_rated&r_orderby=desc"); while($recent->have_posts()) : $recent->the_post();?>
<div class="videopart">
<div class="thumbnail">
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<?php echo get_post_meta($post->ID, "thumb", true); ?>" width="120" height="90" alt="<?php the_title(); ?>" /></a>
</div>
<div class="fpost">
<h3><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<p><?php if(function_exists('the_views')) { the_views(); } ?></p>
<p><?php if(function_exists('the_ratings')) { the_ratings(); } ?></p>
</div>
</div>
<?php endwhile; ?>
Alles anzeigen
hat sich da bei der version 3.1 was geändert?