Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Post Type Aleatorio

Muestra un Post Type Aleatorio

// WP_Query arguments
$args = array (
	'post_type'              => array( 'cw_frases' ),
	'post_status'            => array( 'publish' ),
	'orderby'                => 'rand',
);

// The Query
$query = new WP_Query( $args );