Skip to content

Instantly share code, notes, and snippets.

@pabloselin
Created December 6, 2019 20:52
Show Gist options
  • Save pabloselin/8a235525b58e7444d1feb9cfecc3bc28 to your computer and use it in GitHub Desktop.
Save pabloselin/8a235525b58e7444d1feb9cfecc3bc28 to your computer and use it in GitHub Desktop.
Ejemplo llamado actores
<?php
//Llamado a actores de alcance territorial regional
$args = array(
'post_type' => 'actor',
'numberposts' => -1,
'tax_query' => array(
array(
'taxonomy' => 'alcance_territorial',
'field' => 'slug',
'terms' => 'regional'
)
)
)
);
$actores_regionales = get_posts($args);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment