ionfish (owner)

Revisions

gist: 280933 Download_button fork
public
Description:
A Tarski child theme using the Tarski stylesheet
Public Clone URL: git://gist.github.com/280933.git
Embed All Files: show embed
functions.php #
1
2
3
4
5
6
7
8
9
10
<?php

function my_theme_init() {
    if (!is_admin()) {
        wp_enqueue_style('tarski_stylesheet', get_template_directory_uri() . '/style.css');
    }
}

add_action('init', 'my_theme_init');

style.css #
1
2
3
4
5
6
7
8
9
10
/*
Theme Name: Tarski Child
Theme URI: http://tarskitheme.com/
Description: A Tarski child theme using the Tarski stylesheet.
Author: Benedict Eastaugh
Author URI: http://extralogical.net/
Version: 1.0
Template: Tarski
*/

Please log in to comment.