Funciones PHP para Wordpress php

                  /*Mostrar algo si un post es de un tipo
    determinado */

if (get_post_type() === 'tipo') {
	//Código a mostrar
}

/**
* WP_Query
**/
	$args = array(
		'posts_per_page' => 4,//Cuatro resultados 
		'post_type' => 'recetas',
		'orderby' => 'rand', //Orden aleatorio.
		'tax_query' => array(//Ojo aquí array y dentro otro array
			array(
				'taxonomy' => 'tipo-comida',
				'field' => 'slug',
				'terms' => 'comida-italiana'
			)
		),
	);
	$comida = new WP_Query($args);
	
	while ($comida->have_posts()) : 
	    $comida->the_post();
		the_title('<h1>', '</h1>');//Salida 
	endwhile;
	wp_reset_postdata;