¿Es posible crear un bucle de publicaciones usando WP_Query o query_posts usando el título?
es decir
$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
), que no parece ser parte de la devolución de llamada del filtro (ver codex.wordpress.org/Plugin_API/Filter_Reference/posts_where ) y generará un error.