Created
November 3, 2011 01:35
-
-
Save chipbennett/1335526 to your computer and use it in GitHub Desktop.
WCTOR.childthemes.4
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() | |
* | |
* @since Oenology 2.0 | |
*/ | |
function oenology_hook_post_before() { | |
do_action( 'oenology_hook_post_before' ); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment