Home › Forums › ACF PRO › Automatically add a block to newly created pages › Reply To: Automatically add a block to newly created pages
You can do this with a block template. So in your theme’s functions file, you could set it up using something like:
function yourprefix_register_page_block_template() {
$post_type_object = get_post_type_object( 'page' );
$post_type_object->template = array(
array( 'acf/hero' ), // may need to adjust this based on block name
);
}
add_action( 'init', 'yourprefix_register_page_block_template' );
You can also do it with JS, the link above for block templates goes into how.
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!
🚨 The 2023 ACF Annual Survey closes tomorrow! This is your last chance to complete the survey and help guide the evolution of ACF. https://t.co/0cgr9ZFOJ5
— Advanced Custom Fields (@wp_acf) May 18, 2023
© 2023 Advanced Custom Fields.
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 Cookie Policy. If you continue to use this site, you consent to our use of cookies.