File: /var/www/linde/wp-content/themes/linde/templates/page-elements/element07.php
<?php
// Element ID: Element07
// Element Name: Call to action
$args = array(
'post_type' => 'post',
'posts_per_page' => 10,
'orderby' => 'date',
'order' => 'DESC',
'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array('lva-platform-faq'),
'operator' => 'NOT IN'
),
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array('uncategorized', 'other'),
'operator' => 'IN'
)
)
);
$element["posts"] = Timber::get_posts($args);
$element['articles_page_link'] = get_field('articles_page', 'options');
?>