Mis publicaciones están etiquetadas en el Ciudad categoría (que tiene las categorías superiores: Estado y País).
- Country
-- State
--- City
Quisiera el nivel 2 (Estado) categoría que se mostrará junto con la publicación respectiva, reemplazando las palabras ANTERIOR y SIGUIENTE en la imagen con la categoría correspondiente (Estado).
imagen Enlace de publicación anterior/siguiente
NUEVA YORK – El título del post anterior
FLORIDA – El título de la próxima publicación
Quiero hacer esta adaptación en twentyfourteen_post_nav()
del tema Veinticuatro:
function twentyfourteen_post_nav() {
$previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );
$next = get_adjacent_post( false, '', false );
if ( ! $next && ! $previous ) {
return;
}
?>
<nav class="navigation post-navigation" role="navigation">
<h1 class="screen-reader-text"><?php _e( 'Post navigation', 'twentyfourteen' ); ?></h1>
<div class="nav-links">
<?php
if ( is_attachment() ) :
previous_post_link( '%link', __( '<span class="meta-nav">Published In</span>%title', 'twentyfourteen' ) );
else :
previous_post_link( '%link', __( '<span class="meta-nav">Previous Post</span>%title', 'twentyfourteen' ) );
next_post_link( '%link', __( '<span class="meta-nav">Next Post</span>%title', 'twentyfourteen' ) );
endif;
?>
</div><!-- .nav-links -->
</nav><!-- .navigation -->
<?php
}
endif;
.