DescriptionDescription
This action is fired after the HTML card wrapper end. It allows to add custom HTML after the card wrapper.
ArgumentsArguments
Argument | Type | Description |
$card | array | Holds card layout (layers/blocks) definition |
ExampleExample
PHP
functions.php
function prefix_card_wrapper_end( $card ) {
// Output your HTML here.
}
add_action( 'wp_grid_builder/card/wrapper_end', 'prefix_card_wrapper_end', 10, 1 );