| 1 |
<?php |
| 2 |
/** |
| 3 |
* WPBakery element: Default Content |
| 4 |
* |
| 5 |
* @package wp-commerce7 |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
return; |
| 10 |
} |
| 11 |
|
| 12 |
C7WP_WPBakery::register( |
| 13 |
array( |
| 14 |
'base' => 'c7wp_default', |
| 15 |
'name' => __( 'Default Content', 'wp-commerce7' ), |
| 16 |
'description' => __( 'Display the default Commerce7 content area.', 'wp-commerce7' ), |
| 17 |
'type' => 'default', |
| 18 |
'params' => array(), |
| 19 |
) |
| 20 |
); |
| 21 |
|