2024-01-09 16:13:20 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Template part for displaying a list with data checked in checkbox list
|
|
|
|
*
|
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
|
|
*
|
2024-01-13 13:44:31 +01:00
|
|
|
* @package Oficina_de_Suport_theme
|
2024-01-09 16:13:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// https://developer.wordpress.org/reference/functions/get_template_part/#comment-4130
|
|
|
|
// to display this template use
|
|
|
|
// get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'CHANGETHIS') );
|
|
|
|
$fielditerate = $args['iterate_field'];
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$fields= get_field($fielditerate);
|
|
|
|
if( $fields ):
|
|
|
|
?>
|
2024-01-13 13:44:31 +01:00
|
|
|
<ul class="ofisuport-label item-<?php echo $fielditerate ?>">
|
2024-01-09 16:13:20 +01:00
|
|
|
<?php foreach( $fields as $field ): ?>
|
|
|
|
<li>
|
|
|
|
<?php echo $field['label']; ?>
|
|
|
|
</li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
|
|
|
<?php endif; ?>
|