Lines:
1 to 44 of 44
<?php /** * Custom template tags for this theme * * Eventually, some of the functionality here could be replaced by core features. * * @package WordPress * @subpackage Twenty_Seventeen * @since Twenty Seventeen 1.0 */ if ( ! function_exists( 'twentyseventeen_posted_on' ) ) : /* function twentyseventeen_posted_on() – Prints HTML with meta information for the current post-date/time and author. */ endif; if ( ! function_exists( 'twentyseventeen_time_link' ) ) : /* function twentyseventeen_time_link() – Gets a nicely formatted string for the published date. */ endif; if ( ! function_exists( 'twentyseventeen_entry_footer' ) ) : /* function twentyseventeen_entry_footer() – Prints HTML with meta information for the categories, tags and comments. */ endif; if ( ! function_exists( 'twentyseventeen_edit_link' ) ) : /* function twentyseventeen_edit_link() – Returns an accessibility-friendly link to edit a post or page. */ endif; /* function twentyseventeen_front_page_section() – Display a front page section. */ /* function twentyseventeen_categorized_blog() – Returns true if a blog has more than 1 category. */ /* function twentyseventeen_category_transient_flusher() – Flush out the transients used in twentyseventeen_categorized_blog. */ add_action( 'edit_category', 'twentyseventeen_category_transient_flusher' ); add_action( 'save_post', 'twentyseventeen_category_transient_flusher' ); if ( ! function_exists( 'wp_body_open' ) ) : /* function wp_body_open() – Fire the wp_body_open action. */ endif;