Skip to content

Instantly share code, notes, and snippets.

@remcotolsma
Last active November 16, 2015 13:18
Show Gist options
  • Save remcotolsma/6b9f57d8d71360538549 to your computer and use it in GitHub Desktop.
Save remcotolsma/6b9f57d8d71360538549 to your computer and use it in GitHub Desktop.
WordPress theme class example
<?php
class AseTheme {
public function __construct() {
add_action( 'after_setup_theme', array( $this, 'after_setup_theme' ) );
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
// ...
}
public function after_setup_theme() {
}
public function enqueue_scripts() {
}
// ...
}
$ase_theme = new AseTheme();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment