This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function twentyeleven_posted_on() { | |
// Output definition goes here | |
$output = ''; | |
// Custom filter hook | |
return apply_filters( 'twentyeleven_posted_on', $output ); | |
} | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! function_exists( 'twentyeleven_posted_on' ) ) { | |
function twentyeleven_posted_on() { | |
// Output definition goes here | |
} | |
} | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Action hook before content within div.post | |
* | |
* This action hook fires before content is output in the div.post container. It | |
* can be used to add content before post content is output. | |
* | |
* Template file: loop.php | |
* | |
* @uses do_action() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_theme_support( 'post-thumbnails' ); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Template part file that contains the WordPress Loop | |
* | |
* Contains Loop header, Loop content, and Loop footer. | |
*/ | |
?> | |
<!-- Begin Loop Header (div#loop-header) --> | |
<div id="loop-header"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function themename_setup() { | |
add_theme_support( 'post-thumbnails' ); | |
} | |
add_action( 'after_setup_theme', 'themename_setup' ); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function oenology_enqueue_comment_reply() { | |
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { | |
wp_enqueue_script( 'comment-reply' ); | |
} | |
} | |
add_action( 'wp_enqueue_scripts', 'oenology_enqueue_comment_reply' ); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Header Template Part | |
* | |
* Template part file that contains the HTML document head and | |
* opening HTML body elements, as well as the site header and | |
* "infobar". | |
* | |
* This file is called by all primary template pages | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Theme Name: Oenology Child | |
Description: Child theme for the Oenology theme | |
Template: oenology | |
Version: 1.0 | |
*/ | |
@import('../oenology/style.css'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== Bundled Fonts == | |
= TeXGyre Schola Font = | |
TexGyre Schola Font, Copyright 2005, 2006 C. R. Holder | |
* Source: http://www.fontsquirrel.com/fonts/TeX-Gyre-Schola | |
* License: GUST Font License (GFL) (GPL-compatible) | |
* License URI: /fonts/GUST-FONT-LICENSE.txt |