Manual Query Params in Oxygen | Tutorial

PHOTO EMBED

Tue Mar 22 2022 15:00:46 GMT+0000 (Coordinated Universal Time)

Saved by @Seb #php

<?php
    $args = array(
	'post_type' => 'animals',
	'orderby' => 'rand',
	'tax_query' => array(
		array(
			'taxonomy' => 'animal_type',
			'field'    => 'slug',
			'terms'    => 'dogs',
		),
	),
);
    echo build_query( $args );
?>
content_copyCOPY

À mettre dans un code bloc pour récupérer la requête query à écrire

https://wpdevdesign.com/manual-query-params-in-oxygen/