Skip to content

Instantly share code, notes, and snippets.

@lots0logs
Created April 18, 2018 21:48
Show Gist options
  • Save lots0logs/8c3f3188378d8ab65b92e28ce3bd09c4 to your computer and use it in GitHub Desktop.
Save lots0logs/8c3f3188378d8ab65b92e28ce3bd09c4 to your computer and use it in GitHub Desktop.
Divi Builder :: Custom Module :: Declaring Full Compatibility
<?php
class MYEX_HelloWorld extends ET_Builder_Module {
public $slug = 'myex_hello_world';
public $vb_support = 'on';
public function init() {
$this->name = esc_html__( 'Hello World', 'myex-my-extension' );
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment