DescriptionDescription
This action is fired before the HTML layout wrapper ends. It allows to add custom HTML before the layout wrapper ends.
ExampleExample
PHP
functions.php
function prefix_layout_wrapper_end() {
// Output your HTML here.
}
add_action( 'wp_grid_builder/layout/wrapper_end', 'prefix_layout_wrapper_end' );