Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2. // I put this inside the theme file 'functions.php'
  3. $MyClass = new MyClass;
  4. class MyClass
  5. {
  6.   function MyFunction()
  7.   {
  8.     echo 'Hello World!';
  9.   }
  10. }
  11. ?>
  12.  
  13. <?php
  14. // and I put this inside footer.php
  15. $MyClass->MyFunction();
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement