18 lines
281 B
PHP
18 lines
281 B
PHP
<?php
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
die( '-1' );
|
|
}
|
|
|
|
/**
|
|
* Class WPBakeryShortCode_Vc_Column_Text
|
|
*/
|
|
class WPBakeryShortCode_Vc_Column_Text extends WPBakeryShortCode {
|
|
/**
|
|
* @param $title
|
|
* @return string
|
|
*/
|
|
protected function outputTitle( $title ) {
|
|
return '';
|
|
}
|
|
}
|