我想循环浏览我所有被称为“产品”的帖子。为此,我使用这个:
$products_IDs = new WP_Query( array(
\'post_type\' => \'product\'
));
while ($products_IDs->have_posts() ) : $products_IDs->the_post();
$y = $y + 1;
$myfile = fopen("wp_all_import.txt", "a");
fwrite($myfile, "Counter: " . $y . "\\t");
fclose($myfile);
//some code...
$sql = "INSERT INTO `wp_all_import` (pid, price, price_old, link, shop) VALUES (\'$pid\', \'$price\', \'$price_old\', \'$link\', \'$shop\')";
if($database->query($sql) === TRUE){
$myfile = fopen("wp_all_import.txt", "a");
fwrite($myfile, "Inserted: " . $pid . " \\n");
fclose($myfile);
}
但我总是只得到10个循环,然而我有超过10个产品页面。。。超过100个。。。但是循环总是在10点停止。。。看
https://gamekeys-shop.de/wp-admin/wp_all_import.txt我不知道为什么。。。但是我怎样才能解决这个问题,或者怎样才能找出为什么循环总是在10点停止?
问候并感谢您!