Home › Forums › Pro Support › How to get the template part working with WPSP? › Reply To: How to get the template part working with WPSP?
June 18, 2018 at 8:19 pm
#4967
Keymaster
Maybe try this:
$custom_settings = array(
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'gender',
'tax_term' => $gender
),
array(
'taxonomy' => 'age',
'tax_term' => $age
),
)
);
wpsp_display( 123, $custom_settings );