নীচের ফাংশনে আমি যতবার ডাব্লুপি_কিউয়ারি () কল করি, ওয়ার্ডপ্রেস 8 মেগাবাইট মেমরি ফাঁস করে দেয়। এবং যেহেতু আমি এই ফাংশনটিকে অনেক কল করি, বিষয়গুলি খুব দ্রুত চুল পাকা হয়ে যায় ... :( আমি ফলাফল $ ক্যোয়ারী অবজেক্টটি আনসেট করার পাশাপাশি পর্যায়ক্রমে ডাব্লুপি_ক্যাচি_ফ্লাশ () কল করার চেষ্টা করেছি, তবে কোনওরকমই তার কোনও প্রভাব আছে বলে মনে হচ্ছে না কোনও ভাবনা?
function get_post_ids_in_taxonomies($taxonomies, &$terms=array()) {
$post_ids = array();
$query = gen_query_get_posts_in_taxonomies($taxonomies, $terms);
// var_dump($query);
//Perform the query
$queryObject = new WP_Query($query); //*****THE 8 MEGABYTES IS LEAKED HERE*****
//For all posts found...
if($queryObject->have_posts()) {
while($queryObject->have_posts()) {
$queryObject->the_post();
//Get the $post_id by capturing the output of the_ID()
ob_start();
the_ID();
$post_id = (int) ob_get_contents();
ob_end_clean();
// echo $post_id."\n";
$post_ids[] = $post_id;
}
}
unset($queryObject);
return $post_ids;
}
জেন_কিউরি_গেট_পোস্ট_ইন_ট্যাক্সোনোমিজ () হ'ল:
function gen_query_get_posts_in_taxonomies($taxonomies, &$terms=array()) {
//General query params
$query = array(
'posts_per_page' => -1, //Get all posts (no paging)
'tax_query' => array('relation' => 'OR'),
);
//Add the specific taxonomies and terms onto $query['tax_query']
foreach($taxonomies as $tax) {
//Get terms in the taxonomies if we haven't yet
if(!array_key_exists($tax, $terms)) {
$terms[$tax] = array();
$terms_tmp = get_terms($tax);
foreach($terms_tmp as $tt)
$terms[$tax][] = $tt->term_taxonomy_id;
}
$query['tax_query'][] = array(
'taxonomy' => $tax,
'terms' => $terms[$tax],
'field' => 'term_taxonomy_id',
);
}
return $query;
}
WP_Query
আপনার কেস (8 এমবি ফাঁস হয়ে গেলে) কতগুলি পোস্ট এনেছে?