Description
This action is fired after the HTML layout wrapper start. It allows to add custom HTML after the layout wrapper start.
Example
function my_prefix_wrapper_start() {
echo '<p>Hello world! 👋</p>';
}
add_action( 'cartpops_drawer_wrapper_end', 'my_prefix_wrapper_start' );
Learn where this hook takes place in the visual hook guide.