php facetwp facetwp_query_args短代码模板过滤器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp facetwp_query_args短代码模板过滤器相关的知识,希望对你有一定的参考价值。

<?php

add_filter( 'facetwp_query_args', function( $query_args, $class ) {
    if ( 'gluten_free' == $class->ajax_params['template'] && 'gluten-free-everywhere' == $class->http_params['uri'] ) {
        $query_args['tax_query'] = array(
            array(
              'taxonomy' => 'category', // change 'category' to different taxonomy if needed
              'field'    => 'slug',
              'terms'    => array( 'entertainment', 'travel', 'breakfast-box', 'lunchbox', 'gluten-free-guides' ) // array of term slugs
            )
        );
    }
    return $query_args;
}, 10, 2 );

以上是关于php facetwp facetwp_query_args短代码模板过滤器的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp在GeneratePress中显示facetwp寻呼机

php facetwp添加facetwp-template下载短代码

php facetwp添加facetwp-template下载短代码

php facetwp在facetwp模板中使用woocommerce占位符图像

php facetwp facetwp_facet_filter_posts钩子

php facetwp facetwp_wpdb_sql过滤器