function insertFootNote($content) {
if(is_singular( 'download' )) {
$content.= "<div>";
$content.= "<p>Год разработки - <?php the_field('year');?></p>";
$content.= "<p>Количество страниц - <?php the_field('pages');?></p>";
$content.= "<p>Код ОКП - <?php the_field('okp');?></p>";
$content.= "</div>";
}
return $content;
}
add_filter ('the_content', 'insertFootNote');