Home › Forums › Gutenberg › Force Custom Block Position › Reply To: Force Custom Block Position
You can force an ACF custom block to show each new Page that is created by setting up a Gutenberg template that includes the block you’d like, with this code:
function pages_guten_template() {
$post_type_object = get_post_type_object( 'page' );
$post_type_object->template = array(
array( 'acf/custom-block-name' ),
);
}
add_action( 'init', 'pages_guten_template' );
More details on templates can be found here (including how to lock it in place, if you so desire).
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.