block_footer_area()
Prints the footer block template part.
Contents
Source
File: wp-includes/block-template-utils.php
.
View all references
function block_footer_area() {
block_template_part( 'footer' );
}
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
If you are using this to create a hybrid theme this will not convert shortcodes that are inside the footer area when called in the footer.php of an old-style PHP template the way it does when it’s used inside a FSE template or template part. Everything else seems to function as expected.