A8DOG

A8DOG

随便写写,记录折腾过程!
telegram

WordPress文章太多了特别卡

1,完全禁用 SQL_CALC_FOUND_ROWS,放到 functions.php 文件中即可

add_action('pre_get_posts', 'wndt_post_filter');
function wndt_post_filter($query) {
    if (is_admin() or !$query->is_main_query()) {
        return $query;
    }

    // 禁止查询 SQL_CALC_FOUND_ROWS
    $query->set('no_found_rows', true);
}

2,如果还需要查询文章数,请使用效率更高的 EXPLAIN 方法,而不是 SQL_CALC_FOUND_ROWS 以更有效的方式禁用 SQL_CALC_FOUND_ROWS 的使用,这里我们使用 EXPLAIN 方法,具体代码如下,放在 functions.php 文件中即可

if ( ! function_exists( 'zjck_set_no_found_rows' ) ) {
    /**
     * 设置WP_Query的 'no_found_rows' 属性为true,禁用SQL_CALC_FOUND_ROWS
     *
     * @param  WP_Query $wp_query WP_Query实例
     * @return void
     */
    function zjck_set_no_found_rows(\WP_Query $wp_query)
    {
        $wp_query->set('no_found_rows', true);
    }
}
add_filter( 'pre_get_posts', 'zjck_set_no_found_rows', 10, 1 );


if ( ! function_exists( 'zjck_set_found_posts' ) ) {
    /**
     * 使用 EXPLAIN 方式重构
     */
    function zjck_set_found_posts($clauses, \WP_Query $wp_query)
    {
        // Don't proceed if it's a singular page.
        if ($wp_query->is_singular()) {
            return $clauses;
        }

        global $wpdb;

        $where = isset($clauses['where']) ? $clauses['where'] : '';
        $join = isset($clauses['join']) ? $clauses['join'] : '';
        $distinct = isset($clauses['distinct']) ? $clauses['distinct'] : '';

        $wp_query->found_posts = (int)$wpdb->get_row("EXPLAIN SELECT $distinct * FROM {$wpdb->posts} $join WHERE 1=1 $where")->rows;

        $posts_per_page = (!empty($wp_query->query_vars['posts_per_page']) ? absint($wp_query->query_vars['posts_per_page']) : absint(get_option('posts_per_page')));

        $wp_query->max_num_pages = ceil($wp_query->found_posts / $posts_per_page);

        return $clauses;
    }
}
add_filter( 'posts_clauses', 'zjck_set_found_posts', 10, 2 );

原文链接:https://zhujicankao.com/66624.html

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.