我有大约 60,000 条附件帖子的记录。PHP 在安全模式下运行,所以我不能使用 set_time_limit。
代码:
$args = array( 'post_type' => 'attachment', 'numberposts' => -1);
$attachments = get_posts( $args );
上面的代码给了我一个空白页,而我一直保持错误。直到 numberposts 为 4000 它工作得很好,但不是更多。有什么建议么?
我有大约 60,000 条附件帖子的记录。PHP 在安全模式下运行,所以我不能使用 set_time_limit。
代码:
$args = array( 'post_type' => 'attachment', 'numberposts' => -1);
$attachments = get_posts( $args );
上面的代码给了我一个空白页,而我一直保持错误。直到 numberposts 为 4000 它工作得很好,但不是更多。有什么建议么?