我正在尝试在自定义帖子单一模板中设置自定义帖子供稿。在单个模板或任何其他查询(页面,帖子)之外的代码都可以正常工作。但是在循环内时。它给出错误502“页面请求被取消,因为它花费了太长时间才能完成”。错误日志为空。
$args2 = array(
'post_type' => 'payout',
'post_status' => 'publish',
'tax_query' => array(
array(
'taxonomy' => 'pay_connection',
'field' => 'slug',
'terms' => '30'
)
)
);
$newquery = new WP_Query( $args2 );
if ( have_posts() ) while ($newquery->have_posts()) : $newquery->the_post();
$custom = get_post_custom($post->ID);
echo $custom['pay_start'][0];
echo $custom['pay_end'][0];
echo '$'. $custom['net_pay'][0];
endwhile;
wp_reset_postdata();