Answers for "search in post title wordpress"

PHP
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

Code answers related to "search in post title wordpress"

Browse Popular Code Answers by Language