function hdca_projects_shortcode() {
$projects = new WP_Query(array(
‘post_type’ => ‘projects’,
‘posts_per_page’ => 9
));

ob_start();
echo ‘

‘;
while ($projects->have_posts()) : $projects->the_post();
$goal = get_field(‘goal_amount’);
$current = get_field(‘current_amount’);
$progress = $goal > 0 ? round(($current / $goal) * 100) : 0;
$status = get_field(‘status’);
$location = get_field(‘location’);
$give_id = get_field(‘give_form_id’);
?>

Responses

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *