Advertisement
alamin_89

Vc Custom Default Template Code

Dec 18th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. add_action( 'vc_load_default_templates_action','stock_alamin_vc_homepage' ); // Hook in
  2.  
  3. function stock_alamin_vc_homepage() {
  4.     $data               = array(); // Create new array
  5.     $data['name']       = __( 'Stock - Homepage', 'stock-toolkit' ); // Assign name for your custom template
  6.     $data['weight']     = 0; // Weight of your template in the template list
  7.     $data['content']    = <<<CONTENT
  8.        
  9. CONTENT;
  10.  
  11.     vc_add_default_templates( $data );
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement