Lines:
1 to 41 of 41
<?php /** * Custom template tags for Twenty Fourteen * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ if ( ! function_exists( 'twentyfourteen_paging_nav' ) ) : /* function twentyfourteen_paging_nav() – Display navigation to next/previous set of posts when applicable. */ endif; if ( ! function_exists( 'twentyfourteen_post_nav' ) ) : /* function twentyfourteen_post_nav() – Display navigation to next/previous post when applicable. */ endif; if ( ! function_exists( 'twentyfourteen_posted_on' ) ) : /* function twentyfourteen_posted_on() – Print HTML with meta information for the current post-date/time and author. */ endif; /* function twentyfourteen_categorized_blog() – Find out if blog has more than one category. */ /* function twentyfourteen_category_transient_flusher() – Flush out the transients used in twentyfourteen_categorized_blog. */ add_action( 'edit_category', 'twentyfourteen_category_transient_flusher' ); add_action( 'save_post', 'twentyfourteen_category_transient_flusher' ); if ( ! function_exists( 'twentyfourteen_post_thumbnail' ) ) : /* function twentyfourteen_post_thumbnail() – Display an optional post thumbnail. */ endif; if ( ! function_exists( 'twentyfourteen_excerpt_more' ) && ! is_admin() ) : /* function twentyfourteen_excerpt_more() – Replaces "[. */ add_filter( 'excerpt_more', 'twentyfourteen_excerpt_more' ); endif; if ( ! function_exists( 'wp_body_open' ) ) : /* function wp_body_open() – Fire the wp_body_open action. */ endif;