Search Comments For Keyword and Get a Total Count

Home » Snippets » Search Comments For Keyword and Get a Total Count
0

Created with:

WP_Comment_Query Generator

Visibility: 

public

Creator: WPTurbo Team

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
				$query_args = array(
	'count' => true,
	'type' => 'comment',
	'search' => 'Search Keyword Goes Here',
	'number' => 10,
	'order' => 'DESC',
);

$query = new WP_Comment_Query( $query_args );
			

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