Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. add_action( 'wp_head', array( &$this, 'addMetaData' ) );
  2.  
  3. function removeAddMetaData() {
  4. $vc = new Vc_Base();
  5. remove_action('wp_head', array(&$vc, 'addMetaData'),10000);
  6. }
  7. add_action('init', 'removeAddMetaData', 10000);
  8.  
  9. function removeAddMetaData() {
  10. remove_action('wp_head', array(visual_composer(), 'addMetaData'));
  11. }
  12. add_action('init', 'removeAddMetaData');
  13.  
  14. return vc_manager()->vc();
  15.  
  16. $vc = new Vc_Base();
  17. $this->factory['vc'] = $vc;
  18. return $this->factory['vc'];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement