You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
cosmopet-architecture/wp-content/themes/cosmopet/modules/footer/module-controller.php

14 lines
333 B

<?php
add_filter('timber/context', function($context) {
$context['email_list'] = get_field('email_list', 'options');
$context['adres'] = get_field('adres', 'options');
$context['social'] = get_field('social', 'options');
$context['links'] = get_field('links', 'options');
return $context;
});
?>