Hallo Liebe Leute,
habe dieses front-page.php template erzeugt und in WP 3.0 zeigt es schön brav den neuesten beitrag von news an.
wenn ich auf 3.1 wechsel geht es nicht mehr. Warum?
PHP
<?php get_header(); ?>
<? query_posts(array ( 'category_name' => translate('news'), 'posts_per_page'=>1) ); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>"><img src="<?=catch_that_image()?>" class="front-image" alt="<?the_title();?>" ></a>
<div class="entry">
<!--h2 class="layout">Home</h2-->
<h1 class="layout front"><a href="<?php the_permalink() ?>"><?=get_the_title()?></a></h1>
<?=trim_content(get_the_content(), 110)?> <a href="<?php the_permalink() ?>">[...<?=wpml_translate('more')?>]</a>
</div>
<?php endwhile; endif; ?>
<? get_sidebar('categorypages'); ?>
<?php get_footer(); ?>
Alles anzeigen