hook-vc-message.php 340 B

12345678910111213
  1. <?php
  2. if ( ! defined( 'ABSPATH' ) ) {
  3. die( '-1' );
  4. }
  5. if ( 'vc_edit_form' === vc_post_param( 'action' ) ) {
  6. VcShortcodeAutoloader::getInstance()->includeClass( 'WPBakeryShortCode_Vc_Message' );
  7. add_filter( 'vc_edit_form_fields_attributes_vc_message', array(
  8. 'WPBakeryShortCode_Vc_Message',
  9. 'convertAttributesToMessageBox2',
  10. ) );
  11. }