Advertisement
firoze

function and class new styling calling

Aug 11th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. // function and class new styling calling
  2.  
  3. // if function existis or not
  4. if(!function_exists('bishop_template')):
  5.  
  6. function bishop_template(){
  7.  
  8. }
  9. add_action('init','bishop_template');
  10.  
  11. endif;
  12.  
  13.  
  14. // if class existis or not
  15. if(!class_existis('bishop_slider')):
  16.  
  17. function bishop_slider(){
  18.  
  19. }
  20. add_action('init','bishop_slider');
  21.  
  22. endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement