Skip to content

Instantly share code, notes, and snippets.

@txemaleon
Created June 9, 2016 19:04
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 txemaleon/3e941594ad975e094c7527ca586bbca2 to your computer and use it in GitHub Desktop.
Save txemaleon/3e941594ad975e094c7527ca586bbca2 to your computer and use it in GitHub Desktop.
A Basic Class Template for Wordpress Plugins
<?php
class className {
function __construct() {}
}
function className() {
new className;
}
add_action( 'init', 'className', 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment