PluginProbe
Commerce7 for WordPress / trunk
Commerce7 for WordPress vtrunk
1.8.1 1.8.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.3 1.2.0 1.2.1 1.2.2 1.2.3 1.2.5 1.2.6 1.3.0 1.3.1 1.3.2 1.3.4 1.3.5 1.4.0 1.4.1 All 37 releases
wp-commerce7 / includes / wpbakery / wpbakery-default.php

wpbakery-default.php in Commerce7 for WordPress trunk, at includes/wpbakery/wpbakery-default.php

21 lines 404 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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