Skip to content

Instantly share code, notes, and snippets.

@amostajo
Last active April 22, 2016 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amostajo/c25139e6a9eb5c44c26cc1e58855bec8 to your computer and use it in GitHub Desktop.
Save amostajo/c25139e6a9eb5c44c26cc1e58855bec8 to your computer and use it in GitHub Desktop.
Wordpress MVC - Main Class call from template
<!-- Example in a wordpress template -->
<div class="theme-access">
<?php echo $theme->my_method() ?>
</div>
<?php
// Example within wordpress php code
function test()
{
global $theme;
$result = $theme->my_method();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment