%2$s'; $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); $posted_on = '' . $time_string . ''; $byline = ''; echo '' . $posted_on . ''; // WPCS: XSS OK. $categories_list = get_the_category_list( esc_html__( ', ', 'bakes-and-cakes' ) ); if ( $categories_list && bakes_and_cakes_categorized_blog() ) { echo ''; // WPCS: XSS OK. } } endif; if ( ! function_exists( 'bakes_and_cakes_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function bakes_and_cakes_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() && is_single() ) { /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html__( ', ', 'bakes-and-cakes' ) ); if ( $tags_list ) { echo ''; // WPCS: XSS OK. } } edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'bakes-and-cakes' ), the_title( '"', '"', false ) ), '', '' ); } endif; /** * Returns true if a blog has more than 1 category. * * @return bool */ function bakes_and_cakes_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'bakes_and_cakes_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( 'bakes_and_cakes_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so bakes_and_cakes_categorized_blog should return true. return true; } else { // This blog has only 1 category so bakes_and_cakes_categorized_blog should return false. return false; } } /** * Flush out the transients used in bakes_and_cakes_categorized_blog. */ function bakes_and_cakes_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'bakes_and_cakes_categories' ); } add_action( 'edit_category', 'bakes_and_cakes_category_transient_flusher' ); add_action( 'save_post', 'bakes_and_cakes_category_transient_flusher' ); if( ! function_exists( 'wp_body_open' ) ) : /** * Fire the wp_body_open action. * Added for backwards compatibility to support pre 5.2.0 WordPress versions. */ function wp_body_open() { /** * Triggered after the opening
tag. */ do_action( 'wp_body_open' ); } endif; if( ! function_exists( 'bakes_and_cakes_fonts_url' ) ) : /** * Register custom fonts. */ function bakes_and_cakes_fonts_url() { $fonts_url = ''; /* * translators: If there are characters in your language that are not supported * by Open Sans, translate this to 'off'. Do not translate into your own language. */ $open_sans = _x( 'on', 'Open Sans font: on or off', 'bakes-and-cakes' ); /* * translators: If there are characters in your language that are not supported * by Niconne, translate this to 'off'. Do not translate into your own language. */ $lato = _x( 'on', 'Niconne font: on or off', 'bakes-and-cakes' ); if ( 'off' !== $open_sans || 'off' !== $lato ) { $font_families = array(); if( 'off' !== $open_sans ){ $font_families[] = 'Open Sans:400,400italic,700'; } if( 'off' !== $lato ){ $font_families[] = 'Niconne'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'display' => urlencode( 'fallback' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url( $fonts_url ); } endif; if( ! function_exists( 'bakes_and_cakes_load_preload_local_fonts') ) : /** * Get the file preloads. * * @param string $url The URL of the remote webfont. * @param string $format The font-format. If you need to support IE, change this to "woff". */ function bakes_and_cakes_load_preload_local_fonts( $url, $format = 'woff2' ) { // Check if cached font files data preset present or not. Basically avoiding 'bakes_and_cakes_WebFont_Loader' class rendering. $local_font_files = get_site_option( 'bakes_and_cakes_local_font_files', false ); if ( is_array( $local_font_files ) && ! empty( $local_font_files ) ) { $font_format = apply_filters( 'bakes_and_cakes_local_google_fonts_format', $format ); foreach ( $local_font_files as $key => $local_font ) { if ( $local_font ) { echo ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } } return; } // Now preload font data after processing it, as we didn't get stored data. $font = bakes_and_cakes_webfont_loader_instance( $url ); $font->set_font_format( $format ); $font->preload_local_fonts(); } endif; if( ! function_exists( 'bakes_and_cakes_flush_local_google_fonts' ) ){ /** * Ajax Callback for flushing the local font */ function bakes_and_cakes_flush_local_google_fonts() { // Verify nonce for CSRF protection if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['nonce'] ) ), 'bakes_and_cakes_flush_fonts_nonce' ) ) { wp_send_json_error( 'Invalid nonce', 403 ); } // Check user capability - only administrators should flush fonts if ( ! current_user_can( 'manage_options' ) ) { wp_send_json_error( 'Insufficient permissions', 403 ); } $WebFontLoader = new Bakes_And_Cakes_WebFont_Loader(); //deleting the fonts folder using ajax $WebFontLoader->delete_fonts_folder(); wp_send_json_success(); } } add_action( 'wp_ajax_flush_local_google_fonts', 'bakes_and_cakes_flush_local_google_fonts' );