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