vc-column-text.php 281 B

1234567891011121314151617
  1. <?php
  2. if ( ! defined( 'ABSPATH' ) ) {
  3. die( '-1' );
  4. }
  5. /**
  6. * Class WPBakeryShortCode_Vc_Column_Text
  7. */
  8. class WPBakeryShortCode_Vc_Column_Text extends WPBakeryShortCode {
  9. /**
  10. * @param $title
  11. * @return string
  12. */
  13. protected function outputTitle( $title ) {
  14. return '';
  15. }
  16. }