diff --git a/inc/template-tags.php b/inc/template-tags.php
index fb865c04..49636d58 100644
--- a/inc/template-tags.php
+++ b/inc/template-tags.php
@@ -7,64 +7,6 @@
* @package _s
*/
-if ( ! function_exists( 'the_posts_navigation' ) ) :
-/**
- * Display navigation to next/previous set of posts when applicable.
- *
- * @todo Remove this function when WordPress 4.3 is released.
- */
-function the_posts_navigation() {
- // Don't print empty markup if there's only one page.
- if ( $GLOBALS['wp_query']->max_num_pages < 2 ) {
- return;
- }
- ?>
-
- post_parent ) : get_adjacent_post( false, '', true );
- $next = get_adjacent_post( false, '', false );
-
- if ( ! $next && ! $previous ) {
- return;
- }
- ?>
-
- ' . get_the_author() . '' );
- } elseif ( is_year() ) {
- $title = sprintf( esc_html__( 'Year: %s', '_s' ), get_the_date( esc_html_x( 'Y', 'yearly archives date format', '_s' ) ) );
- } elseif ( is_month() ) {
- $title = sprintf( esc_html__( 'Month: %s', '_s' ), get_the_date( esc_html_x( 'F Y', 'monthly archives date format', '_s' ) ) );
- } elseif ( is_day() ) {
- $title = sprintf( esc_html__( 'Day: %s', '_s' ), get_the_date( esc_html_x( 'F j, Y', 'daily archives date format', '_s' ) ) );
- } elseif ( is_tax( 'post_format' ) ) {
- if ( is_tax( 'post_format', 'post-format-aside' ) ) {
- $title = esc_html_x( 'Asides', 'post format archive title', '_s' );
- } elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) {
- $title = esc_html_x( 'Galleries', 'post format archive title', '_s' );
- } elseif ( is_tax( 'post_format', 'post-format-image' ) ) {
- $title = esc_html_x( 'Images', 'post format archive title', '_s' );
- } elseif ( is_tax( 'post_format', 'post-format-video' ) ) {
- $title = esc_html_x( 'Videos', 'post format archive title', '_s' );
- } elseif ( is_tax( 'post_format', 'post-format-quote' ) ) {
- $title = esc_html_x( 'Quotes', 'post format archive title', '_s' );
- } elseif ( is_tax( 'post_format', 'post-format-link' ) ) {
- $title = esc_html_x( 'Links', 'post format archive title', '_s' );
- } elseif ( is_tax( 'post_format', 'post-format-status' ) ) {
- $title = esc_html_x( 'Statuses', 'post format archive title', '_s' );
- } elseif ( is_tax( 'post_format', 'post-format-audio' ) ) {
- $title = esc_html_x( 'Audio', 'post format archive title', '_s' );
- } elseif ( is_tax( 'post_format', 'post-format-chat' ) ) {
- $title = esc_html_x( 'Chats', 'post format archive title', '_s' );
- }
- } elseif ( is_post_type_archive() ) {
- $title = sprintf( esc_html__( '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( esc_html__( '%1$s: %2$s', '_s' ), $tax->labels->singular_name, single_term_title( '', false ) );
- } else {
- $title = esc_html__( '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; // WPCS: XSS OK.
- }
-}
-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; // WPCS: XSS OK.
- }
-}
-endif;
-
/**
* Returns true if a blog has more than 1 category.
*