Hi team, please assist in resolving the following issue above, below is my code:
);
$projects_query = new WP_Query( $projects_args );
if ( $projects_query ->have_posts() ) {
echo '<h3>Projects</h3>';
while ( $projects_query->have_posts() ) {
$projects_query->the_post();
$term_id = get_field( 'technology' );
$term = get_term( $term_id, 'technologies' );
$icon = $term->slug;
?>
<div class="slider_btn <?php echo $icon; ?> offices">
<a href="<?php echo get_the_permalink(); ?>"><span class="eng"><?php echo get_the_title(); ?>
</span><span class="fr"><?php the_field('french_title');?></span></a>
</div>
<?php
}
}
endif;