Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. if (function_exists('vc_map_update')) {
  2.  
  3.    $row_update = array (
  4.      'weight' => 100
  5.    );
  6.  
  7.    $rev_update = array (
  8.      'weight' => 17
  9.    );  
  10.    $c_update = array (
  11.      'weight' => 13
  12.    );    
  13.  
  14.    $no_animation = array (
  15.       'admin_label' => false
  16.    );
  17.  
  18.    vc_map_update('vc_row', $row_update);
  19.    vc_map_update('vc_column_text', $row_update);
  20.    vc_map_update('vc_row', $row_update);
  21.    vc_map_update('vc_column_text', $no_animation);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement