テーマの function.php ファイルに以下の関数を作成し、それを taxonomy.php ファイルから呼び出そうとしています。
query_brands_geo('dealers', 'publish', '1', $taxtype, $geo, $brands);
すべての変数は taxonomy.php で設定されます。
以下のクエリは、taxonomy.php ファイルに直接配置すると完璧に機能します。これを関数として機能させるには何が欠けていますか?
関数として、引数が2〜6回繰り返されると、次のエラーステートメントが表示されます。
警告: query_brands_geo() の引数 2 がありません
function query_brands_geo($posttype, $poststatus, $paidvalue, $taxtype, $geo, $brands) {
/* Custom Query for a brand/geo combination to display dealers with a certain brand and geography */
//Query only for brands/geography combo and paid dealers
$wp_query = new WP_Query();
$args = array(
'post_type' => '$posttype',
'post_status' => array($poststatus),
'orderby' => 'rand',
'posts_per_page' => 30,
'meta_query' => array(
array(
'key' => 'wpcf-paid',
'value' => array($paidvalue),
'compare' => 'IN',
)
),
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => $taxtype,
'field' => 'slug',
'terms' => $geo
),
array(
'taxonomy' => 'brands',
'field' => 'slug',
'terms' => $brands
)
)
);
$wp_query->query($args);
}
add_action( 'after_setup_theme', 'query_brands_geo' );