%2$s';
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(
esc_html_x( 'Posted on %s', 'post date', 'cozipress' ),
'' . $time_string . ''
);
$byline = sprintf(
esc_html_x( 'by %s', 'post author', 'cozipress' ),
'' . esc_html( get_the_author() ) . ''
);
echo '' . $posted_on . ' ' . $byline . ''; // WPCS: XSS OK.
}
endif;
if ( ! function_exists( 'cozipress_entry_footer' ) ) :
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function cozipress_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__( ', ', 'cozipress' ) );
if ( $categories_list && cozipress_categorized_blog() ) {
printf( '' . esc_html__( 'Posted in %1$s', 'cozipress' ) . '', $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__( ', ', 'cozipress' ) );
if ( $tags_list ) {
printf( '' . esc_html__( 'Tagged %1$s', 'cozipress' ) . '', $tags_list ); // WPCS: XSS OK.
}
}
if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
echo '';
}
edit_post_link(
sprintf(
/* translators: %s: Name of current post */
esc_html__( 'Edit %s', 'cozipress' ),
the_title( '"', '"', false )
),
'',
''
);
}
endif;
/**
* Returns true if a blog has more than 1 category.
*
* @return bool
*/
function cozipress_categorized_blog() {
if ( false === ( $all_the_cool_cats = get_transient( 'cozipress_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( 'cozipress_categories', $all_the_cool_cats );
}
if ( $all_the_cool_cats > 1 ) {
// This blog has more than 1 category so cozipress_categorized_blog should return true.
return true;
} else {
// This blog has only 1 category so cozipress_categorized_blog should return false.
return false;
}
}
/**
* Flush out the transients used in cozipress_categorized_blog.
*/
function cozipress_category_transient_flusher() {
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return;
}
// Like, beat it. Dig?
delete_transient( 'cozipress_categories' );
}
add_action( 'edit_category', 'cozipress_category_transient_flusher' );
add_action( 'save_post', 'cozipress_category_transient_flusher' );
/**
* Function that returns if the menu is sticky
*/
if (!function_exists('cozipress_sticky_menu')):
function cozipress_sticky_menu()
{
$hide_show_sticky = get_theme_mod('hide_show_sticky','1');
if ($hide_show_sticky == '1'):
return 'is-sticky-on';
else:
return 'not-sticky';
endif;
}
endif;
/**
* Register Google fonts for cozipress.
*/
function cozipress_google_font() {
$get_fonts_url = '';
$font_families = array();
$font_families = array('Source Sans Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900');
$query_args = array(
'family' => urlencode( implode( '|', $font_families ) ),
'subset' => urlencode( 'latin,latin-ext' ),
);
$get_fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' );
return $get_fonts_url;
}
function cozipress_scripts_styles() {
wp_enqueue_style( 'cozipress-fonts', cozipress_google_font(), array(), null );
}
add_action( 'wp_enqueue_scripts', 'cozipress_scripts_styles' );
/**
* Register Breadcrumb for Multiple Variation
*/
function cozipress_breadcrumbs_style() {
get_template_part('./template-parts/sections/section','breadcrumb');
}
/**
* This Function Check whether Sidebar active or Not
*/
if(!function_exists( 'cozipress_post_layout' )) :
function cozipress_post_layout(){
if(is_active_sidebar('cozipress-sidebar-primary'))
{ echo 'col-lg-8'; }
else
{ echo 'col-lg-12'; }
} endif;
/**
* CoziPress Dynamic Styles
*/
if( ! function_exists( 'cozipress_theme_dynamic_style' ) ):
function cozipress_theme_dynamic_style() {
$output_css = '';
// Footer Parallax
$enable_footer_parallax = get_theme_mod('enable_footer_parallax','1');
$footer_parallax_margin_bottom = get_theme_mod('footer_parallax_margin_bottom','586');
if($enable_footer_parallax == '1') {
$output_css .="@media (min-width: 992px) {
.footer-parallax .cozipress-content {
position: relative;
margin-bottom: " .esc_attr($footer_parallax_margin_bottom). "px;
box-shadow: 0 5px 10px 0 rgb(51 51 51 / 50%);
z-index: 1;
}
.footer-parallax .main-footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 0;
}
}\n";
}
wp_add_inline_style( 'cozipress-style', $output_css );
}
endif;
add_action( 'wp_enqueue_scripts', 'cozipress_theme_dynamic_style' );