我需要做一个WP_Query
与LIKE
上post_title
。
我从这个常规开始WP_Query
:
$wp_query = new WP_Query(
array (
'post_type' => 'wp_exposants',
'posts_per_page' => '1',
'post_status' => 'publish',
'orderby' => 'title',
'order' => 'ASC',
'paged' => $paged
)
);
但是我实际上想要做的事情在SQL中看起来像这样:
$query = "
SELECT *
FROM $wpdb->posts
WHERE $wpdb->posts.post_title LIKE '$param2%'
AND $wpdb->posts.post_type = 'wp_exposants'
ORDER BY $wpdb->posts.post_title
";
$wpdb->get_results($query);
输出显示我期望的结果,但是我使用常规<?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
显示结果。
那是行不通的$wpdb->get_results()
。
我怎样才能达到我在这里描述的目的?
$wpdb->prepare()
。