Random Posts In a Funny Videos Category

Home » Snippets » Random Posts In a Funny Videos Category
0

Created with:

WP_Query Generator

Visibility: 

public

Creator: WPTurbo Team

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
				$args = [
	'post_type' => [ 'post' ],
	'post_status' => [ 'published' ],
	'category_name' => 'funny_videos',
	'orderby' => 'rand',
];
// The Query
$my_query = new WP_Query( $args );

			

Register an account to save your snippets or go Pro to get more features.