क्या शीर्षक का उपयोग करके 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 देखें ) और एक त्रुटि उत्पन्न करेगा।