Home › Forums › Gutenberg › block templates – best practice? › Reply To: block templates – best practice?
I don’t know if its possible to connect it to a certain page template , it would be great if it was possible. But at least its possible to set predefined blocks to a post or page or custom post type.
Just add this function:
function myplugin_register_template() {
$post_type_object = get_post_type_object( 'page' );
$post_type_object->template = array(
array( 'acf/block1' ), // the name of your block
array( 'acf/block2' ), // the name of your block
);
}
add_action( 'init', 'myplugin_register_template' );
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.