thesis_hook_archives_template
Description
Used to customize the appearance of the Archives Template (archives.php).
Source Position
<div class="format_text"> thesis_hook_archives_template </div>
Default Functions
The following functions are added to this hook by default:
thesis_archives_template
Example
function my_archives_template() { ?>
<h3 class="top">By Month</h3>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
</ul>
<?php }
add_action('thesis_hook_archives_template', 'my_archives_template');
remove_action('thesis_hook_archives_template', 'thesis_archives_template');