শিরোনামটি ব্যবহার করে কি ডাব্লুপিউকিউয়ারি বা ক্যোয়ারী_পোস্টগুলি ব্যবহার করে একটি লুপ তৈরি করা সম্ভব?
অর্থাত
$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
) বাদে দুর্দান্ত কাজ করে, যা ফিল্টার কলব্যাকের অংশ বলে মনে হয় না ( কোডেক্স.ওয়ার্ডপ্রেস.আর / প্লাগইন_এপিআই / ফিল্টার_প্রকাশ / স্থানগুলি দেখুন ) এবং ত্রুটি উত্পন্ন করবে।