Created
December 6, 2019 20:52
-
-
Save pabloselin/8a235525b58e7444d1feb9cfecc3bc28 to your computer and use it in GitHub Desktop.
Ejemplo llamado actores
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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