Lines:
1 to 53 of 53
<?php /** * Custom Twenty Sixteen template tags * * Eventually, some of the functionality here could be replaced by core features. * * @package WordPress * @subpackage Twenty_Sixteen * @since Twenty Sixteen 1.0 */ if ( ! function_exists( 'twentysixteen_entry_meta' ) ) : /* function twentysixteen_entry_meta() – Prints HTML with meta information for the categories, tags. */ endif; if ( ! function_exists( 'twentysixteen_entry_date' ) ) : /* function twentysixteen_entry_date() – Prints HTML with date information for current post. */ endif; if ( ! function_exists( 'twentysixteen_entry_taxonomies' ) ) : /* function twentysixteen_entry_taxonomies() – Prints HTML with category and tags for current post. */ endif; if ( ! function_exists( 'twentysixteen_post_thumbnail' ) ) : /* function twentysixteen_post_thumbnail() – Displays an optional post thumbnail. */ endif; if ( ! function_exists( 'twentysixteen_excerpt' ) ) : /* function twentysixteen_excerpt() – Displays the optional excerpt. */ endif; if ( ! function_exists( 'twentysixteen_excerpt_more' ) && ! is_admin() ) : /* function twentysixteen_excerpt_more() – Replaces "[. */ add_filter( 'excerpt_more', 'twentysixteen_excerpt_more' ); endif; if ( ! function_exists( 'twentysixteen_categorized_blog' ) ) : /* function twentysixteen_categorized_blog() – Determines whether blog/site has more than one category. */ endif; /* function twentysixteen_category_transient_flusher() – Flushes out the transients used in twentysixteen_categorized_blog(). */ add_action( 'edit_category', 'twentysixteen_category_transient_flusher' ); add_action( 'save_post', 'twentysixteen_category_transient_flusher' ); if ( ! function_exists( 'twentysixteen_the_custom_logo' ) ) : /* function twentysixteen_the_custom_logo() – Displays the optional custom logo. */ endif; if ( ! function_exists( 'wp_body_open' ) ) : /* function wp_body_open() – Fire the wp_body_open action. */ endif;