Home › Forums › Backend Issues (wp-admin) › My acf_form is saving to the database but not showing up in the admin panel unde › Reply To: My acf_form is saving to the database but not showing up in the admin panel unde
Is this exactly where and the order that the code appears on you page? or are you just leaving out the code in between. https://www.advancedcustomfields.com/resources/acf_form/
acf_form_head();
must be placed before any HTML is generated. Generally before get_header();
in your template or in your header.php file something like this
<?php
/**
* The template for displaying the header
*
* Displays all of the head element and everything up until the "site-content" div.
*
* @package WordPress
* @subpackage Twenty_Fifteen
* @since Twenty Fifteen 1.0
*/
acf_form_head();
?><!DOCTYPE html>
It may be saved in the database, but is it save to a post_id with a post type of “dog”?
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.