Hola buenas, a ver si alguien me puede ayudar, por favor, estoy intentando mostrar el titulo de un post creado con custom post, y por muchas bueltas que le doy me muestra el titulo de los custom post, no del post en si, es decir, me esplico, si los custom post que he creado se titulan "recetas" y un post que he creado se titula "primera receta", este post en vez de mostrarme su titulo (primera receta), me muestra el titulo general de los custom post (recetas) y no se como arreglarlo.
El titulo lo muestro con the_title();
Dejo el loop aver si esta bien hecho:
<?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"><?php the_title(); ?></h2>
<?php
$recent = new WP_Query('post_type=muro');
while($recent->have_posts()) : $recent->the_post();
?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php /* End the Loop */ ?>
Mil gracias y salu2