function wp_blog_theme in WP Blog - a WordPress-style blogging module. 7
Implements hook_theme().
File
- ./
wp_blog.module, line 86 - WP Blog provides a content-type, taxonomy vocabulary, views and various features to mimic a WordPress-style blog.
Code
function wp_blog_theme() {
return array(
// wp_blog_archive is the sidebar menu which displays the blog navigation.
'wp_blog_archive' => array(
'render element' => 'element',
'file' => 'wp_blog.theme.inc',
),
);
}