| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<div class="frm-flex-box frm-justify-between"> |
| 7 |
<h2 class="frm-widget-heading"><?php echo esc_html( $template['widget-heading'] ); ?></h2> |
| 8 |
<a class="frm-widget-cta" href="<?php echo esc_url( $template['cta']['link'] ); ?>"> |
| 9 |
<?php echo esc_html( $template['cta']['label'] ); ?> |
| 10 |
</a> |
| 11 |
</div> |
| 12 |
<?php |
| 13 |
$wp_list_table->display( |
| 14 |
array( |
| 15 |
'display-top-nav' => false, |
| 16 |
'display-bottom-nav' => false, |
| 17 |
'display-bottom-headers' => false, |
| 18 |
) |
| 19 |
); |
| 20 |
|