1
divi Builderでカスタムモジュールを作成しました。以下はコードですdivi builderプラグインのカスタムモジュールにフィールドを追加する方法
function ex_divi_child_theme_setup() {
if (class_exists('ET_Builder_Module')) {
class ET_Builder_Module_Image2 extends ET_Builder_Module {
function init() {
$this->name = __('Image_1', 'et_builder');
$this->slug = 'et_pb_image2';
// a whole bunch of php code that defines how the class functions
}
}
$et_builder_module_image2 = new ET_Builder_Module_Image2();
add_shortcode('et_pb_image2', array($et_builder_module_image2, '_shortcode_callback'));
}
}
add_action('et_builder_ready', 'ex_divi_child_theme_setup');
このカスタムモジュールにフィールドを追加する必要があります。どのように私はこれを達成することができます。
私はこれを試して、それは私のために働いていない。 – Sandra