'', 'link_before' => '', 'link_after' => '', 'next_or_number' => 'number', 'separator' => ' ', 'nextpagelink' => esc_html__( 'Next page', 'revision' ), 'previouspagelink' => esc_html__( 'Previous page', 'revision' ), ) ); /** * The csco_pagination_after hook. * * @since 1.0.0 */ do_action( 'csco_pagination_after' ); } } if ( ! function_exists( 'csco_entry_breadcrumbs' ) ) { /** * Entry Breadcrumbs */ function csco_entry_breadcrumbs() { csco_breadcrumbs(); } } if ( ! function_exists( 'csco_entry_header' ) ) { /** * Entry Header Simple and Standard */ function csco_entry_header() { if ( ! is_singular() ) { return; } if ( 'none' === csco_get_page_header_type() ) { return; } get_template_part( 'template-parts/entry/entry-header' ); } } if ( ! function_exists( 'csco_entry_media' ) ) { /** * Entry Media */ function csco_entry_media() { if ( ! is_singular() ) { return; } if ( 'none' === csco_get_page_header_type() ) { return; } get_template_part( 'template-parts/entry/entry-media' ); } } if ( ! function_exists( 'csco_entry_tags' ) ) { /** * Entry Tags */ function csco_entry_tags() { if ( ! is_singular( 'post' ) ) { return; } if ( false === get_theme_mod( 'post_tags', true ) ) { return; } the_tags( '
' ); } } if ( ! function_exists( 'csco_entry_footer' ) ) { /** * Entry Footer */ function csco_entry_footer() { if ( ! is_singular( 'post' ) ) { return; } if ( false === get_theme_mod( 'post_footer', true ) ) { return; } get_template_part( 'template-parts/entry/entry-footer' ); } } if ( ! function_exists( 'csco_entry_comments' ) ) { /** * Entry Comments */ function csco_entry_comments() { if ( post_password_required() ) { return; } if ( comments_open() || get_comments_number() ) { comments_template(); } } } if ( ! function_exists( 'csco_entry_read_next' ) ) { /** * Entry Read Next */ function csco_entry_read_next() { if ( ! is_singular( 'post' ) ) { return; } if ( false === get_theme_mod( 'post_read_next', true ) ) { return; } get_template_part( 'template-parts/entry/entry-read-next' ); } } if ( ! function_exists( 'csco_entry_prev_next' ) ) { /** * Entry Prev Next */ function csco_entry_prev_next() { if ( ! is_singular( 'post' ) ) { return; } if ( false === get_theme_mod( 'post_prev_next', true ) ) { return; } get_template_part( 'template-parts/entry/entry-prev-next' ); } } if ( ! function_exists( 'csco_entry_metabar' ) ) { /** * Entry Metabar */ function csco_entry_metabar() { if ( ! is_singular( 'post' ) ) { return; } if ( false === get_theme_mod( 'post_metabar', true ) ) { return; } ?>