%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $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( '%s', '' . $time_string . '' ); } if ( ! empty( $posted_on ) ) { echo '' . $posted_on . ''; // WPCS: XSS OK. } $byline = ''; if ( true === $show_meta_author ) { $byline = sprintf( '%s', '' . esc_html( get_the_author() ) . '' ); } if ( ! empty( $byline ) ) { echo ' ' . $byline . ''; // WPCS: XSS OK. } } if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { $show_meta_comment = true; if ( true === $show_meta_comment ) { echo ''; comments_popup_link( esc_html__( 'Leave a comment', 'university-hub' ), esc_html__( '1 Comment', 'university-hub' ), esc_html__( '% Comments', 'university-hub' ) ); echo ''; } } // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { $show_meta_categories = true; if ( true === $show_meta_categories ) { /* Translators: used between list items, there is a space after the comma. */ $categories_list = get_the_category_list( esc_html__( ', ', 'university-hub' ) ); if ( $categories_list && university_hub_categorized_blog() ) { printf( '%1$s', $categories_list ); // WPCS: XSS OK. } } $show_meta_tags = true; if ( true === $show_meta_tags ) { /* Translators: used between list items, there is a space after the comma. */ $tags_list = get_the_tag_list( '', esc_html__( ', ', 'university-hub' ) ); if ( $tags_list ) { printf( '%1$s', $tags_list ); // WPCS: XSS OK. } } } edit_post_link( esc_html__( 'Edit', 'university-hub' ), '', '' ); } endif; if ( ! function_exists( 'university_hub_entry_meta_date' ) ) : /** * Prints HTML with date meta. */ function university_hub_entry_meta_date() { ?>
'ids', // 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( 'university_hub_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so university_hub_categorized_blog should return true. return true; } else { // This blog has only 1 category so university_hub_categorized_blog should return false. return false; } } /** * Flush out the transients used in university_hub_categorized_blog. */ function university_hub_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'university_hub_categories' ); } add_action( 'edit_category', 'university_hub_category_transient_flusher' ); add_action( 'save_post', 'university_hub_category_transient_flusher' ); /** * Display single taxonomy link. * * Used inside loop only. * * @since 1.0.0 * * @param string $taxonomy Taxonomy slug. * @param string $before HTML to place before. * @param string $after HTML to place after. * @param int $post_id Post ID. */ function university_hub_the_term_link_single( $taxonomy = 'category', $before = '', $after = '', $post_id = false ) { // Bail if post is not related to taxonomy. if ( ! is_object_in_taxonomy( get_post_type( $post_id ), $taxonomy ) ) { return; } $post = get_post( $post_id ); // Bail if not valid post. if ( ! is_a( $post, 'WP_Post' ) ) { return; } $terms = wp_get_post_terms( $post->ID, $taxonomy ); // Bail if no terms available. if ( empty( $terms ) ) { return; } // Sort the terms by ID and get the first category. if ( function_exists( 'wp_list_sort' ) ) { $terms = wp_list_sort( $terms, 'term_id' ); } else { usort( $terms, '_usort_terms_by_ID' ); } $term = array_shift( $terms ); $link = '' . esc_html( $term->name ) . ''; $link = $before . $link . $after; echo $link; }