' . __( 'Sticky', 'avalon-b' ) . ' ';
}
// Set up and print post meta information.
printf( '%s %s %s.',
__( 'Posted in', 'avalon-b' ),
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() ),
__( 'by', 'avalon-b' ),
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
get_the_author()
);
}
}
if ( ! function_exists( 'odin_paging_nav' ) ) {
/**
* Print HTML with meta information for the current post-date/time and author.
*
* @since 2.2.0
*/
function odin_paging_nav() {
$mid = 2; // Total of items that will show along with the current page.
$end = 1; // Total of items displayed for the last few pages.
$show = false; // Show all items.
echo odin_pagination( $mid, $end, false );
}
}