Hmm it seems i was too enthusiastic ??
Anyways it works fine, but if i add the post to a category where there are already other posts, it doesn’t show, neither does it show on the front page of my site.. :S
i check the index.php but there are no special conditions, in fact this is my code:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="box" id="post-<?php the_ID(); ?>" id="post-<?php the_ID(); ?>">
<?php asts_home_image();?>
<div class="boxtitle">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div>
<div class="cover">
<div class="entry">
<p><?php the_content_rss('', TRUE, '', 30); ?> </p>
</div>
<div class="data">
<span class="author"> Posted by <?php the_author(); ?></span>
<span class="clock"> On <?php the_time('F - j - Y'); ?></span>
<span class="comm"><?php comments_popup_link('0 Comment', '1 Comment', '% Comments'); ?></span>
</div>
Also i saw that the url is now /movie_review/title
instead of (my normal posts have this) /new-releases/title
I would like to have it the same, any ideas?