thesis_hook_byline_item
Description
Within p.headline_meta, just before the edit link (if enabled).
If more than one post is shown on a page, this hook is fired for each one.
This hook will only have a noticeable affect if there is a byline to display according to the settings in Thesis Options.
Source Position
<p class="headline_meta"><abbr class="published" title="2010-06-15">June 15, 2010</abbr> thesis_hook_byline_item </p>
Default Functions
There are no default functions added to this hook.
Example
function add_to_byline() {
echo ' Filed under: <span>';
echo get_the_category_list(',');
echo '</span>';
}
add_action('thesis_hook_byline_item', 'add_to_byline', '99');