diff --git a/archive.php b/archive.php index fd2cb3c..3d0efcc 100644 --- a/archive.php +++ b/archive.php @@ -9,71 +9,15 @@ get_header(); ?> -
+
-

- ' . get_the_author() . '' ); - - elseif ( is_day() ) : - printf( __( 'Day: %s', '_s' ), '' . get_the_date() . '' ); - - elseif ( is_month() ) : - printf( __( 'Month: %s', '_s' ), '' . get_the_date( _x( 'F Y', 'monthly archives date format', '_s' ) ) . '' ); - - elseif ( is_year() ) : - printf( __( 'Year: %s', '_s' ), '' . get_the_date( _x( 'Y', 'yearly archives date format', '_s' ) ) . '' ); - - elseif ( is_tax( 'post_format', 'post-format-aside' ) ) : - _e( 'Asides', '_s' ); - - elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) : - _e( 'Galleries', '_s' ); - - elseif ( is_tax( 'post_format', 'post-format-image' ) ) : - _e( 'Images', '_s' ); - - elseif ( is_tax( 'post_format', 'post-format-video' ) ) : - _e( 'Videos', '_s' ); - - elseif ( is_tax( 'post_format', 'post-format-quote' ) ) : - _e( 'Quotes', '_s' ); - - elseif ( is_tax( 'post_format', 'post-format-link' ) ) : - _e( 'Links', '_s' ); - - elseif ( is_tax( 'post_format', 'post-format-status' ) ) : - _e( 'Statuses', '_s' ); - - elseif ( is_tax( 'post_format', 'post-format-audio' ) ) : - _e( 'Audios', '_s' ); - - elseif ( is_tax( 'post_format', 'post-format-chat' ) ) : - _e( 'Chats', '_s' ); - - else : - _e( 'Archives', '_s' ); - - endif; - ?> -

%s
', $term_description ); - endif; + the_archive_title( '

', '

' ); + the_archive_description( '
', '
' ); ?> @@ -99,7 +43,7 @@ get_header(); ?> -
+ diff --git a/header.php b/header.php index 9b98141..185274e 100644 --- a/header.php +++ b/header.php @@ -28,7 +28,7 @@
- + 'primary' ) ); ?>
diff --git a/inc/template-tags.php b/inc/template-tags.php index faf1ffd..41151ba 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -123,6 +123,98 @@ function _s_entry_footer() { } endif; +if ( ! function_exists( 'the_archive_title' ) ) : +/** + * Shim for `the_archive_title()`. + * + * Display the archive title based on the queried object. + * + * @todo Remove this function when WordPress 4.3 is released. + * + * @param string $before Optional. Content to prepend to the title. Default empty. + * @param string $after Optional. Content to append to the title. Default empty. + */ +function the_archive_title( $before = '', $after = '' ) { + if ( is_category() ) { + $title = sprintf( __( 'Category: %s', '_s' ), single_cat_title( '', false ) ); + } elseif ( is_tag() ) { + $title = sprintf( __( 'Tag: %s', '_s' ), single_tag_title( '', false ) ); + } elseif ( is_author() ) { + $title = sprintf( __( 'Author: %s', '_s' ), '' . get_the_author() . '' ); + } elseif ( is_year() ) { + $title = sprintf( __( 'Year: %s', '_s' ), get_the_date( _x( 'Y', 'yearly archives date format', '_s' ) ) ); + } elseif ( is_month() ) { + $title = sprintf( __( 'Month: %s', '_s' ), get_the_date( _x( 'F Y', 'monthly archives date format', '_s' ) ) ); + } elseif ( is_day() ) { + $title = sprintf( __( 'Day: %s', '_s' ), get_the_date( _x( 'F j, Y', 'daily archives date format', '_s' ) ) ); + } elseif ( is_tax( 'post_format', 'post-format-aside' ) ) { + $title = _x( 'Asides', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) { + $title = _x( 'Galleries', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-image' ) ) { + $title = _x( 'Images', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-video' ) ) { + $title = _x( 'Videos', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-quote' ) ) { + $title = _x( 'Quotes', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-link' ) ) { + $title = _x( 'Links', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-status' ) ) { + $title = _x( 'Statuses', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-audio' ) ) { + $title = _x( 'Audio', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-chat' ) ) { + $title = _x( 'Chats', 'post format archive title', '_s' ); + } elseif ( is_post_type_archive() ) { + $title = sprintf( __( 'Archives: %s', '_s' ), post_type_archive_title( '', false ) ); + } elseif ( is_tax() ) { + $tax = get_taxonomy( get_queried_object()->taxonomy ); + /* translators: 1: Taxonomy singular name, 2: Current taxonomy term */ + $title = sprintf( __( '%1$s: %2$s', '_s' ), $tax->labels->singular_name, single_term_title( '', false ) ); + } else { + $title = __( 'Archives', '_s' ); + } + + /** + * Filter the archive title. + * + * @param string $title Archive title to be displayed. + */ + $title = apply_filters( 'get_the_archive_title', $title ); + + if ( ! empty( $title ) ) { + echo $before . $title . $after; + } +} +endif; + +if ( ! function_exists( 'the_archive_description' ) ) : +/** + * Shim for `the_archive_description()`. + * + * Display category, tag, or term description. + * + * @todo Remove this function when WordPress 4.3 is released. + * + * @param string $before Optional. Content to prepend to the description. Default empty. + * @param string $after Optional. Content to append to the description. Default empty. + */ +function the_archive_description( $before = '', $after = '' ) { + $description = apply_filters( 'get_the_archive_description', term_description() ); + + if ( ! empty( $description ) ) { + /** + * Filter the archive description. + * + * @see term_description() + * + * @param string $description Archive description to be displayed. + */ + echo $before . $description . $after; + } +} +endif; + /** * Returns true if a blog has more than 1 category. * @@ -158,6 +250,9 @@ function _s_categorized_blog() { * Flush out the transients used in _s_categorized_blog. */ function _s_category_transient_flusher() { + if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { + return; + } // Like, beat it. Dig? delete_transient( '_s_categories' ); } diff --git a/js/navigation.js b/js/navigation.js index 706e4d8..13a4e44 100644 --- a/js/navigation.js +++ b/js/navigation.js @@ -7,12 +7,14 @@ var container, button, menu; container = document.getElementById( 'site-navigation' ); - if ( ! container ) + if ( ! container ) { return; + } button = container.getElementsByTagName( 'button' )[0]; - if ( 'undefined' === typeof button ) + if ( 'undefined' === typeof button ) { return; + } menu = container.getElementsByTagName( 'ul' )[0]; @@ -22,13 +24,21 @@ return; } - if ( -1 === menu.className.indexOf( 'nav-menu' ) ) + menu.setAttribute( 'aria-expanded', 'false' ); + + if ( -1 === menu.className.indexOf( 'nav-menu' ) ) { menu.className += ' nav-menu'; + } button.onclick = function() { - if ( -1 !== container.className.indexOf( 'toggled' ) ) + if ( -1 !== container.className.indexOf( 'toggled' ) ) { container.className = container.className.replace( ' toggled', '' ); - else + button.setAttribute( 'aria-expanded', 'false' ); + menu.setAttribute( 'aria-expanded', 'false' ); + } else { container.className += ' toggled'; + button.setAttribute( 'aria-expanded', 'true' ); + menu.setAttribute( 'aria-expanded', 'true' ); + } }; } )();