/layout/wrapper_start

DescriptionDescription

This action is fired after the HTML layout wrapper start. It allows to add custom HTML after the layout wrapper start.

ExampleExample

PHP
functions.php
function prefix_wrapper_start() {

	// Output your HTML here.

}
add_action( 'wp_grid_builder/layout/wrapper_start', 'prefix_wrapper_start' );