Current Path : /home/theafprt/conviviality360.com/wp-content/themes/hueman/parts/ |
Current File : /home/theafprt/conviviality360.com/wp-content/themes/hueman/parts/page-title.php |
<?php if ( is_single() ) { $post_type = get_post_type(); } ?> <?php if ( ! hu_is_home_empty() ) : ?> <div class="page-title hu-pad group"> <?php //prints the relevant metas (cat, tag, author, date, ...) for a given context : home, single post, page, 404, search, archive... ?> <?php if ( is_home() && hu_is_checked('blog-heading-enabled') ) : ?> <?php if ( ( hu_is_real_home() && hu_booleanize_checkbox_val( hu_get_option('wrap_in_h_one') ) ) || !hu_is_real_home() ) : ?> <h2><?php echo hu_blog_title(); ?></h2> <?php elseif ( hu_is_real_home() && !hu_booleanize_checkbox_val( hu_get_option('wrap_in_h_one') ) ) : ?> <h1><?php echo hu_blog_title(); ?></h1> <?php endif; ?> <?php // For a regular post, we display the category and comments ?> <?php elseif ( is_single() && 'post' === $post_type ): ?> <ul class="meta-single group"> <li class="category"><?php the_category(' <span>/</span> '); ?></li> <?php if ( comments_open() && ( hu_is_checked( 'comment-count' ) ) ): ?> <li class="comments"><a href="<?php comments_link(); ?>"><i class="far fa-comments"></i><?php comments_number( '0', '1', '%' ); ?></a></li> <?php endif; ?> </ul> <?php // For a CPT, we display the post title ?> <?php elseif ( is_single() && 'post' !== $post_type ): ?> <h1><?php echo hu_get_page_title(); ?></h1> <?php elseif ( is_page() ): ?> <h1><?php echo hu_get_page_title(); ?></h1> <?php elseif ( is_search() ): ?> <h1><?php echo hu_get_search_title(); ?></h1> <?php elseif ( is_404() ): ?> <h1><?php echo hu_get_404_title(); ?></h1> <?php elseif ( is_author() ): ?> <h1><?php echo hu_get_author_title(); ?></h1> <?php elseif ( is_category() || is_tag() ): ?> <h1><?php echo hu_get_term_page_title(); ?></h1> <?php elseif ( is_day() || is_month() || is_year() ) : ?> <h1><?php echo hu_get_date_archive_title(); ?></h1> <?php elseif ( is_tax() ) : ?> <h1><?php the_archive_title(); ?></h1> <?php elseif ( is_post_type_archive() ) : ?> <h1><?php post_type_archive_title(); ?></h1> <?php else: ?> <?php if ( ! is_home() && ! hu_is_checked('blog-heading-enabled') ) : ?> <h2><?php the_title(); ?></h2> <?php endif; ?> <?php endif; ?> </div><!--/.page-title--> <?php endif; ?>