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.
12 lines
474 B
12 lines
474 B
<?php
|
|
|
|
// Добавляем данные в контекст Timber
|
|
add_filter('timber/context', function($context) {
|
|
$context['email_list'] = get_field('email_list', 'options');
|
|
$context['email_list_ae'] = get_field('email_list_ae', 'options');
|
|
$context['adres'] = get_field('adres', 'options');
|
|
$context['social'] = get_field('social', 'options');
|
|
$context['footer-links'] = get_field('footer-links', 'options');
|
|
return $context;
|
|
});
|
|
|
|
|