Skip to content

Instantly share code, notes, and snippets.

@mattonomics
Created February 28, 2012 23:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mattonomics/1936022 to your computer and use it in GitHub Desktop.
Save mattonomics/1936022 to your computer and use it in GitHub Desktop.
Thesis Skin Starter Template - Basic
/*---:[ body ]:---*/
body.custom { background: #000; }
// deny direct access
if (! defined('ABSPATH'))
die('Please do not directly access this file');
class thesis_skin_example extends thesis_custom_loop {
public function __construct() {
parent::__construct(); // this "activates" the Custom Loop API
add_action('init', array($this, 'init'));
}
public function init() {
$this->actions();
$this->filters();
$this->switch_skin();
}
public function actions() {
// add and remove actions here
}
public function filters() {
// add and remove filters here
}
private function switch_skin() {
// Since after_switch_theme won't run, let's make sure that we generate the CSS
if (is_admin() && ! get_option(__CLASS__ . '_generate')) {
thesis_generate_css();
update_option(__CLASS__ . '_generate', 1);
wp_cache_flush(); // flush the cache so things don't break!
}
else return null;
}
// below this line, use methods from the Custom Loop API.
public function home() {
thesis_loop::home(); // remove this line and put your own home loop here
}
public function archive() {
thesis_loop::archive(); // remove this line and put your own archive loop here
}
}
new thesis_skin_example;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment