我想问一下如何优化或减少具有多个子循环的WordPress网站的查询,以更快地加载WordPress网站。
■现状
■问题
■想法
以下是示例子循环代码
<?php
$args = array(
'post_type' => 'real_estate',
'taxonomy' => 're_category',
'term' => 'sea',
'orderby' => 'modified',
'meta_query' => array(
array(
'key' => 'show_top_sea',
'value' => '"show"',
'compare' => 'LIKE'
)
),
'no_found_rows' => true,
);
include locate_template( 'template/front-template.php' );
?>