タイトルを使用して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を参照)の一部ではないようで、エラーを生成する2番目の引数(参照先)を除いて素晴らしい動作をします。