제목을 사용하여 WP_Query 또는 query_posts를 사용하여 게시물 루프를 만들 수 있습니까?
즉
$args = array('post_title'='LIKE '.$str.'% ');
$res = WP_Query($arg);
// the loop...
// trying this now...
$mypostids = $wpdb->get_col("select ID from $wpdb->posts where post_title like 'Abb%' ");
echo count($mypostids).", "; // works but can't echo out array of IDs for the next args?
$args = array(
'post__in'=> $mypostids
);
$res = WP_Query($args);
while( $res->have_posts() ) : $res->the_post(); ...
$wp_query
필터 콜백의 일부가 아닌 것 같고 ( codex.wordpress.org/Plugin_API/Filter_Reference/posts_where 참조 ) 두 번째 인수 (reference )를 제외하고는 훌륭하게 작동 하며 오류가 발생합니다.