Hola.
Estoy con la web:
http://www.acube.es/
La pagina "noticias" tiene para que se vean las entradas de la categoria "noticias". En vez del post directamente se ve un link para entrar. Yo quiero que directamente salga la entrada que he introducido en noticias.
He mirado el page.php y ni idea, asi que os lo pongo..
Código:
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<div class="entry">
<?php the_content(); ?>
</div><!-- /.entry -->
</div><!-- /.post -->
<?php endwhile; else: ?>
<div class="post">
<h2 class="title"><?php _e('Error 404', 'woothemes'); ?></h2>
<div class="entry">
<p><?php _e('The page you are looking for does not exist. Please check the URL for typing errors, or', 'woothemes'); ?> <a href="<?php bloginfo('home'); ?>" title="Go Home"><?php _e('head back home', 'woothemes'); ?></a> <?php _e('and start over', 'woothemes'); ?></p>
</div><!-- /.entry -->
</div><!-- /.post -->
<?php endif; ?>
</div><!-- /#content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
A ver si me podeis ayudar, mil gracias!!