diff --git a/inc/template-tags.php b/inc/template-tags.php index 6ca1f8f7..951449bf 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -10,8 +10,6 @@ if ( ! function_exists( '_s_paging_nav' ) ) : /** * Display navigation to next/previous set of posts when applicable. - * - * @return void */ function _s_paging_nav() { // Don't print empty markup if there's only one page. @@ -40,8 +38,6 @@ endif; if ( ! function_exists( '_s_post_nav' ) ) : /** * Display navigation to next/previous post when applicable. - * - * @return void */ function _s_post_nav() { // Don't print empty markup if there's nowhere to navigate. @@ -97,6 +93,8 @@ endif; /** * Returns true if a blog has more than 1 category. + * + * @return bool */ function _s_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( '_s_categories' ) ) ) { diff --git a/inc/wpcom.php b/inc/wpcom.php index 9ed9e5ab..2d423ab6 100644 --- a/inc/wpcom.php +++ b/inc/wpcom.php @@ -11,7 +11,6 @@ * Adds support for wp.com-specific theme functions. * * @global array $themecolors - * @return void */ function _s_wpcom_setup() { global $themecolors;