%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = '%2$s%4$s'; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); $posted_on = sprintf( esc_html_x( '%s', 'post date', 'ameno' ), '' . $time_string . '' ); $byline = sprintf( esc_html_x( '%s', 'post author', 'ameno' ), '' . esc_html( get_the_author() ) . '' ); echo ' ' . $byline . '' . $posted_on . ''; // WPCS: XSS OK. } endif; if ( ! function_exists( 'ameno_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function ameno_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html__( ', ', 'ameno' ) ); if ( $tags_list ) { printf( '' . esc_html__( '%1$s', 'ameno' ) . '', $tags_list ); // WPCS: XSS OK. } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( esc_html__( 'Leave your comment', 'ameno' ), esc_html__( '1 Comment', 'ameno' ), esc_html__( '% Comments', 'ameno' ) ); echo ''; } edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'ameno' ), the_title( '"', '"', false ) ), '', '' ); } endif; /** * Returns true if a blog has more than 1 category. * * @return bool */ function ameno_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'ameno_categories' ) ) ) { // Create an array of all the categories that are attached to posts. $all_the_cool_cats = get_categories( array( 'fields' => 'ids', 'hide_empty' => 1, // We only need to know if there is more than one category. 'number' => 2, ) ); // Count the number of categories that are attached to the posts. $all_the_cool_cats = count( $all_the_cool_cats ); set_transient( 'ameno_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so ameno_categorized_blog should return true. return true; } else { // This blog has only 1 category so ameno_categorized_blog should return false. return false; } } /** * Flush out the transients used in ameno_categorized_blog. */ function ameno_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'ameno_categories' ); } add_action( 'edit_category', 'ameno_category_transient_flusher' ); add_action( 'save_post', 'ameno_category_transient_flusher' ); /* * Social media icon menu as per http://justintadlock.com/archives/2013/08/14/social-nav-menus-part-2 */ function ameno_social_menu() { if ( has_nav_menu( 'social' ) ) { wp_nav_menu( array( 'theme_location' => 'social', 'container' => 'div', 'container_id' => 'menu-social', 'container_class' => 'menu-social', 'menu_id' => 'menu-social-items', 'menu_class' => 'menu-items', 'link_before' => '', 'link_after' => '', 'depth' => 1, 'fallback_cb' => '', ) ); } } if ( ! function_exists( 'ameno_paging_nav' ) ) : /** * Display navigation to next/previous set of posts when applicable. * * @return void */ function ameno_paging_nav() { // Don't print empty markup if there's only one page. if ( $GLOBALS['wp_query']->max_num_pages < 2 ) { return; } $paged = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1; $pagenum_link = html_entity_decode( get_pagenum_link() ); $query_args = array(); $url_parts = explode( '?', $pagenum_link ); if ( isset( $url_parts[1] ) ) { wp_parse_str( $url_parts[1], $query_args ); } $pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link ); $pagenum_link = trailingslashit( $pagenum_link ) . '%_%'; $format = $GLOBALS['wp_rewrite']->using_index_permalinks() && ! strpos( $pagenum_link, 'index.php' ) ? 'index.php/' : ''; $format .= $GLOBALS['wp_rewrite']->using_permalinks() ? user_trailingslashit( 'page/%#%', 'paged' ) : '?paged=%#%'; // Set up paginated links. $links = paginate_links( array( 'base' => $pagenum_link, 'format' => $format, 'total' => $GLOBALS['wp_query']->max_num_pages, 'current' => $paged, 'mid_size' => 2, 'add_args' => array_map( 'urlencode', $query_args ), 'prev_text' => '', 'next_text' => '', 'type' => 'list', ) ); if ( $links ) : ?> post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); if ( ! $next && ! $previous ) { return; } ?> ' . esc_html_x( 'Previous Post:', 'Previous post', 'ameno' ) . '%link', '%title' ); next_post_link( '' . esc_html_x( 'Next Post:', 'Next post', 'ameno' ) . '%link', '%title' ); ?>