Description
This action is fired before the HTML Drawer wrapper starts.
Example
function my_prefix_wrapper_end() {
echo '<p>Hello world! 👋</p>';
}
add_action( 'cartpops_drawer_wrapper_start', 'my_prefix_wrapper_end' );
Learn where this hook takes place in the visual hook guide.