'' . esc_html__( 'Previous Page', 'bezel' ) . '', 'next_text' => '' . esc_html__( 'Next Page', 'bezel' ) . '', 'before_page_number' => '', ) ); } endif; if ( ! function_exists( 'bezel_the_post_navigation' ) ) : /** * Previous/next post navigation. * * @see https://developer.wordpress.org/reference/functions/the_post_navigation/ * @return void */ function bezel_the_post_navigation() { // Previous/next post navigation @since 4.1.0. the_post_navigation( array ( 'next_text' => ' ' . '%title', 'prev_text' => ' ' . '%title', ) ); } endif; if ( ! function_exists( 'bezel_posted_on' ) ) : /** * Prints HTML with meta information for the current post-date/time and author. */ function bezel_posted_on() { $time_string = ''; 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( '%1$s %3$s', esc_html_x( 'Posted on', 'post date', 'bezel' ), esc_url( get_permalink() ), $time_string ); // Posted On HTML $html = '' . $posted_on . ''; // // WPCS: XSS OK. /** * Filters the Posted On HTML. * * @param string $html Posted On HTML. */ $html = apply_filters( 'bezel_posted_on_html', $html ); echo $html; // WPCS: XSS OK. } endif; if ( ! function_exists( 'bezel_posted_by' ) ) : /** * Prints author. */ function bezel_posted_by() { // Global Post global $post; // We need to get author meta data from both inside/outside the loop. $post_author_id = get_post_field( 'post_author', $post->ID ); // Byline $byline = sprintf( esc_html_x( 'by %s', 'post author', 'bezel' ), '' ); // Posted By HTML $html = ''; // WPCS: XSS OK. /** * Filters the Posted By HTML. * * @param string $html Posted By HTML. */ $html = apply_filters( 'bezel_posted_by_html', $html ); echo $html; // WPCS: XSS OK. } endif; if ( ! function_exists( 'bezel_post_first_category' ) ) : /** * Prints first category for the current post. * * @return void */ function bezel_post_first_category() { // An array of categories to return for the post. $categories = get_the_category(); if ( $categories[0] ) { // Post First Category HTML $html = sprintf( '%3$s', esc_attr( esc_url( get_category_link( $categories[0]->term_id ) ) ), esc_attr( $categories[0]->cat_name ), esc_html( $categories[0]->cat_name ) ); /** * Filters the Post First Category HTML. * * @param string $html Post First Category HTML. * @param array $categories An array of categories to return for the post. */ $html = apply_filters( 'bezel_post_first_category_html', $html, $categories ); echo $html; // WPCS: XSS OK. } } endif; if ( ! function_exists( 'bezel_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function bezel_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( esc_html__( ', ', 'bezel' ) ); if ( $categories_list && bezel_categorized_blog() ) { printf( '' . esc_html__( 'Posted in %1$s', 'bezel' ) . '', $categories_list ); // WPCS: XSS OK. } /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html__( ', ', 'bezel' ) ); if ( $tags_list ) { printf( '', $tags_list ); // WPCS: XSS OK. } } edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'bezel' ), the_title( '"', '"', false ) ), '', '' ); } endif; /** * Returns true if a blog has more than 1 category. * * @return bool */ function bezel_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'bezel_categories' ) ) ) { // Create an array of all the categories that are attached to posts. $all_the_cool_cats = get_categories( array ( 'fields' => 'ids', 'hide_empty' => 1, // 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( 'bezel_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so bezel_categorized_blog should return true. return true; } else { // This blog has only 1 category so bezel_categorized_blog should return false. return false; } } /** * Flush out the transients used in bezel_categorized_blog. */ function bezel_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'bezel_categories' ); } add_action( 'edit_category', 'bezel_category_transient_flusher' ); add_action( 'save_post', 'bezel_category_transient_flusher' ); if ( ! function_exists( 'bezel_post_thumbnail' ) ) : /** * Display an optional post thumbnail. * * Wraps the post thumbnail in an anchor element. * * @return void */ function bezel_post_thumbnail() { // Post Thumbnail HTML $html = ''; // Get Post Thumbnail $post_thumbnail = get_the_post_thumbnail( null, 'bezel-featured', array( 'class' => 'img-featured img-responsive' ) ); // Validation if ( ! empty( $post_thumbnail ) ) { // Post Thumbnail HTML $html = sprintf( '
', esc_attr( esc_url( get_the_permalink() ) ), $post_thumbnail ); } /** * Filters the Post Thumbnail HTML. * * @param string $html Post Thumbnail HTML. */ $html = apply_filters( 'bezel_post_thumbnail_html', $html ); // Print HTML if ( ! empty( $html ) ) { echo $html; // WPCS: XSS OK. } } endif; if ( ! function_exists( 'bezel_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. */ function bezel_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; /** * A helper conditional function. * Theme has Excerpt or Not * * https://codex.wordpress.org/Function_Reference/get_the_excerpt * This function must be used within The Loop. * * @return bool */ function bezel_has_excerpt() { // Post Excerpt $post_excerpt = get_the_excerpt(); /** * Filters the Post has excerpt. * * @param bool */ return apply_filters( 'bezel_has_excerpt', ! empty ( $post_excerpt ) ); } /** * A helper conditional function. * Theme has Sidebar or Not * * @return bool */ function bezel_has_sidebar() { /** * Filters the theme has active sidebar. * * @param bool */ return apply_filters( 'bezel_has_sidebar', is_active_sidebar( 'sidebar-1' ) ); } /** * Display the layout classes. * * @param string $section - Name of the section to retrieve the classes * @return void */ function bezel_layout_class( $section = 'content' ) { // Sidebar Position $sidebar_position = bezel_mod( 'bezel_sidebar_position' ); if ( ! bezel_has_sidebar() ) { $sidebar_position = 'no'; } // Layout Skeleton $layout_skeleton = array( 'content' => array( 'content' => 'col-xxl-12', ), 'content-sidebar' => array( 'content' => 'col-12 col-sm-12 col-md-12 col-lg-8 col-xl-8 col-xxl-8', 'sidebar' => 'col-12 col-sm-12 col-md-12 col-lg-4 col-xl-4 col-xxl-4', ), 'sidebar-content' => array( 'content' => 'col-12 col-sm-12 col-md-12 col-lg-8 col-xl-8 col-xxl-8 push-lg-4 push-xl-4 push-xxl-4', 'sidebar' => 'col-12 col-sm-12 col-md-12 col-lg-4 col-xl-4 col-xxl-4 pull-lg-8 pull-xl-8 pull-xxl-8', ), 'sidebar-content-rtl' => array( 'content' => 'col-12 col-sm-12 col-md-12 col-lg-8 col-xl-8 col-xxl-8 pull-lg-4 pull-xl-4 pull-xxl-4', 'sidebar' => 'col-12 col-sm-12 col-md-12 col-lg-4 col-xl-4 col-xxl-4 push-lg-8 push-xl-8 push-xxl-8', ), ); // Layout Classes switch( $sidebar_position ) { case 'no': $layout_classes = $layout_skeleton['content']['content']; break; case 'left': $layout_classes = ( 'sidebar' === $section )? $layout_skeleton['sidebar-content']['sidebar'] : $layout_skeleton['sidebar-content']['content']; if ( is_rtl() ) { $layout_classes = ( 'sidebar' === $section )? $layout_skeleton['sidebar-content-rtl']['sidebar'] : $layout_skeleton['sidebar-content-rtl']['content']; } break; case 'right': default: $layout_classes = ( 'sidebar' === $section )? $layout_skeleton['content-sidebar']['sidebar'] : $layout_skeleton['content-sidebar']['content']; } echo esc_attr( $layout_classes ); }