File: /home/coachou/www/wp-content/themes/colormag/template-parts/hooks/content/content.php
<?php
/**
* Content hooks.
*
* @package ColorMag
*
* TODO: @since
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
if ( ! function_exists( 'colormag_archive_header' ) ) :
/**
* Archive header.
*/
function colormag_archive_header() {
?>
<header class="cm-page-header">
<?php
if ( is_category() ) :
do_action( 'colormag_category_title' );
single_cat_title();
else :
?>
<h1 class="cm-page-title">
<span>
<?php
if ( is_tag() ) :
single_tag_title();
elseif ( is_author() ) :
/**
* Queue the first post, that way we know
* what author we're dealing with (if that is the case).
*/
the_post();
printf(
/* Translators: %s: Author name */
esc_html__( 'Author: %s', 'colormag' ),
'<span class="vcard">' . esc_html( get_the_author() ) . '</span>'
);
/**
* Since we called the_post() above, we need to
* rewind the loop back to the beginning that way
* we can run the loop properly, in full.
*/
rewind_posts();
elseif ( is_day() ) :
printf(
/* Translators: %s: Day archive */
esc_html__( 'Day: %s', 'colormag' ),
'<span>' . esc_html( get_the_date() ) . '</span>'
);
elseif ( is_month() ) :
printf(
/* Translators: %s: Month archive */
esc_html__( 'Month: %s', 'colormag' ),
'<span>' . esc_html( get_the_date( 'F Y' ) ) . '</span>'
);
elseif ( is_year() ) :
printf(
/* Translators: %s: Year archive */
esc_html__( 'Year: %s', 'colormag' ),
'<span>' . esc_html( get_the_date( 'Y' ) ) . '</span>'
);
elseif ( is_tax( 'post_format', 'post-format-aside' ) ) :
esc_html_e( 'Asides', 'colormag' );
elseif ( is_tax( 'post_format', 'post-format-image' ) ) :
esc_html_e( 'Images', 'colormag' );
elseif ( is_tax( 'post_format', 'post-format-video' ) ) :
esc_html_e( 'Videos', 'colormag' );
elseif ( is_tax( 'post_format', 'post-format-quote' ) ) :
esc_html_e( 'Quotes', 'colormag' );
elseif ( is_tax( 'post_format', 'post-format-link' ) ) :
esc_html_e( 'Links', 'colormag' );
elseif ( is_plugin_active( 'woocommerce/woocommerce.php' ) && function_exists( 'is_woocommerce' ) && is_woocommerce() ) :
woocommerce_page_title( false );
else :
esc_html_e( 'Archives', 'colormag' );
endif;
?>
</span>
</h1>
<?php
endif;
// Show an optional term description.
$term_description = term_description();
if ( ! empty( $term_description ) ) :
printf(
'<div class="taxonomy-description">%s</div>',
$term_description
); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
endif;
?>
</header><!-- .cm-page-header -->
<?php
}
endif;
add_action( 'colormag_action_archive_header', 'colormag_archive_header', 10 );
if ( ! function_exists( 'colormag_render_comments' ) ) :
/**
* Post/Page comments.
*/
function colormag_render_comments() {
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || '0' != get_comments_number() ) {
comments_template();
}
}
endif;
add_action( 'colormag_action_comments', 'colormag_render_comments', 10 );
if ( ! function_exists( 'colormag_author_bio' ) ) :
/**
* Author bio.
*/
function colormag_author_bio() {
if ( get_the_author_meta( 'description' ) ) :
$avatar_image_size = apply_filters( 'colormag_author_bio_avatar_size_filter', 100 );
?>
<div class="author-box">
<div class="author-img"><?php echo get_avatar( get_the_author_meta( 'user_email' ), $avatar_image_size ); ?></div>
<h4 class="author-name"><?php the_author_meta( 'display_name' ); ?></h4>
<p class="author-description"><?php the_author_meta( 'description' ); ?></p>
</div>
<?php
endif;
}
endif;
add_action( 'colormag_action_after_single_post_content', 'colormag_author_bio', 10 );
if ( ! function_exists( 'colormag_related_posts' ) ) :
/**
* Related posts.
*/
function colormag_related_posts() {
if ( 1 == get_theme_mod( 'colormag_enable_related_posts', 0 ) ) {
get_template_part( 'template-parts/content/related-posts' );
}
}
endif;
add_action( 'colormag_action_after_single_post_content', 'colormag_related_posts', 20 );
if ( ! function_exists( 'colormag_ajax_post_class' ) ) :
/**
* Add missing class `post` while ajax call.
*/
function colormag_ajax_post_class( $class ) {
$class[] = 'post';
return $class;
}
endif;
if ( is_admin() && wp_doing_ajax() ) {
add_action( 'post_class', 'colormag_ajax_post_class' );
}