Hi Long, i can make it work on VIEWS
{% set fecha = "now"|date('Y-m-d') %}
<h2>
Mano de Obra, Materiales y/o Equipos
</h2>
{% set args = { post_type: 'licitacion', posts_per_page: 180, orderby: 'fecha_apertura', order:'asc', tax_query: [ { taxonomy: 'tipo-de-obra', field: 'slug', terms: 'mano-de-obra-materiales-y-o-equipos', } ], meta_query: [ { key: 'fecha_apertura', value:fecha , compare: '=', type:'DATE' } ] } %}
{% set my_posts = mb.get_posts( args ) %}
{% if my_posts == null %}
Sin Licitaciones
{% else %}
{% for post in my_posts %}
<h3>{{ post.post_title }}</h3>
Tipo de Obra: {{ mb.get_the_term_list( post.ID, 'tipo-de-obra' ) }}<br>
Comitente: {{ post.comitente }}<br>
Lugar: {{ mb.get_the_term_list( post.ID, 'lugar' ) }}<br>
Fecha de apertura: {{ post.fecha_apertura | date( 'd-m-Y' ) }}<br>
Presupuesto oficial: {{ post.presupuesto_oficial }} ({{ post.presupuesto_oficial_moneda }})<br>
{% endfor %}
{% endif %}