29/05/2015, 14:10
|
| | Fecha de Ingreso: mayo-2011
Mensajes: 282
Antigüedad: 13 años, 6 meses Puntos: 3 | |
Respuesta: Mostrar el titulo del custom post Este es el loop que estoy usando:
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<article class="post">
<h2><img class="meta_img" src="<?php echo get_stylesheet_directory_uri(); ?>/images/bocata.png"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php
$recent = new WP_Query('post_type=muro');
while($recent->have_posts()) : $recent->the_post();
?>
<?php the_content(); ?>
<?php endwhile; ?>
Dentro de las etiquetas h2, el <?php the_title(); ?> no me muestra el titulo del post en cuestión, ,me muestra el titulo de la pagina, y no comprendo porque |