PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
themes
/
deep
/
inc
/
visualcomposer
/
params
/
text
<?php // Text param vc_add_shortcode_param( 'text', 'text_settings_field' ); function text_settings_field( $settings, $value ) { $settings['type'] = isset ( $settings['type'] ) ? $settings['type'] : '' ; $settings['param_name'] = isset ( $settings['param_name'] ) ? $settings['param_name'] : '' ; $settings['options'] = isset ( $settings['options'] ) ? $settings['options'] : '' ; $uniqid = substr(uniqid(rand(),1),0,7); $output = ''; $output .= ' <div class="wn-text-wrap wn-text' . esc_attr( $uniqid ) . '"> '.esc_attr( $value ).' </div>'; return $output; }
[+]
..
[-] text-param.php
[edit]