Есть файл send.php, в который нужно переходить после отправки формы. Я создал новую страницу, и в файл send.php добавил этот код:
<?php
/*
Template Name: Custom
*/
?>
Затем выбрал этот шаблон в свойствах. Создал поле в плагине ACF, и добавил код получения записей:
<?php
$posts = get_field('new_post');
if( $posts ): ?>
<?php foreach( $posts as $post): // variable must be called $post (IMPORTANT) ?>
<?php setup_postdata($post); ?>
...
<?php endforeach; ?>
<?php wp_reset_postdata(); // IMPORTANT - reset the $post object so the rest of the page works correctly ?>
<?php endif; ?>
Возникает ошибка в этой строке:
$posts = get_field('new_post');
Текст ошибки:
Fatal error: Uncaught Error: Call to undefined function get_field() in D:\OSPanel\domains\testwp\wp-content\themes\bets\send.php:122 Stack trace: #0 {main} thrown in D:\OSPanel\domains\testwp\wp-content\themes\bets\send.php on line 122
Название проверил, всё правильно. Я так понимаю что я не привязал страницу или ошибся где-то, подскажите как исправить. Спасибо!