Skip to content

Instantly share code, notes, and snippets.

@lots0logs
Last active April 18, 2018 21:49
Show Gist options
  • Save lots0logs/3db0568a1c7f6de794fb89d82bd4c9ee to your computer and use it in GitHub Desktop.
Save lots0logs/3db0568a1c7f6de794fb89d82bd4c9ee to your computer and use it in GitHub Desktop.
Divi Builder :: Custom Module :: Declaring Partial Compatibility
<?php
class MYEX_HelloWorld extends ET_Builder_Module {
public $slug = 'myex_hello_world';
public $vb_support = 'partial';
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