Answers for "wp get_posts() by post title"

PHP
1

get_posts category

$defaults_param = array(
				'numberposts'      	=> -1,
				'post_type'        	=> 'post',
				'category' 			=> 40 ,
				'suppress_filters'	=> false
			);
$get_featured_post = get_posts($defaults_param);
Posted by: Guest on January-04-2021
0

search post by post title in wordpres

Code
$args = array("post_type" => "mytype", "s" => $title);
$query = get_posts( $args );
Posted by: Guest on August-04-2020

Browse Popular Code Answers by Language