mirror of
https://ghproxy.net/https://github.com/AlxMedia/splits.git
synced 2025-08-26 11:09:49 +08:00
Initial commit
This commit is contained in:
commit
9f13aa6240
389 changed files with 84369 additions and 0 deletions
52
inc/page-title.php
Normal file
52
inc/page-title.php
Normal file
|
@ -0,0 +1,52 @@
|
|||
<div class="page-title">
|
||||
|
||||
<?php if ( is_home() ) : ?>
|
||||
<h2><?php echo split_blog_title(); ?></h2>
|
||||
|
||||
<?php elseif ( is_single() ): ?>
|
||||
<h2><?php the_category(' <span>/</span> '); ?></h2>
|
||||
|
||||
<?php elseif ( is_page() ): ?>
|
||||
<h2><?php the_title(); ?></h2>
|
||||
|
||||
<?php elseif ( is_search() ): ?>
|
||||
<h1>
|
||||
<?php if ( have_posts() ): ?><i class="fas fa-search"></i><?php endif; ?>
|
||||
<?php if ( !have_posts() ): ?><i class="fas fa-exclamation-circle"></i><?php endif; ?>
|
||||
<?php $search_results=$wp_query->found_posts;
|
||||
if ($search_results==1) {
|
||||
echo $search_results.' '.esc_html__('Search result','split');
|
||||
} else {
|
||||
echo $search_results.' '.esc_html__('Search results','split');
|
||||
}
|
||||
?>
|
||||
</h1>
|
||||
|
||||
<?php elseif ( is_404() ): ?>
|
||||
<h1><i class="fas fa-exclamation-circle"></i><?php esc_html_e('Error 404.','split'); ?> <span><?php esc_html_e('Page not found!','split'); ?></span></h1>
|
||||
|
||||
<?php elseif ( is_author() ): ?>
|
||||
<?php $author = get_userdata( get_query_var('author') );?>
|
||||
<h1><i class="far fa-user"></i><?php esc_html_e('Author:','split'); ?> <span><?php echo $author->display_name;?></span></h1>
|
||||
|
||||
<?php elseif ( is_category() ): ?>
|
||||
<h1><?php echo single_cat_title('', false); ?></h1>
|
||||
|
||||
<?php elseif ( is_tag() ): ?>
|
||||
<h1><i class="fas fa-tags"></i><?php esc_html_e('Tagged:','split'); ?> <span><?php echo single_tag_title('', false); ?></span></h1>
|
||||
|
||||
<?php elseif ( is_day() ): ?>
|
||||
<h1><i class="far fa-calendar"></i><?php esc_html_e('Daily Archive:','split'); ?> <span><?php echo esc_html( get_the_time('F j, Y') ); ?></span></h1>
|
||||
|
||||
<?php elseif ( is_month() ): ?>
|
||||
<h1><i class="far fa-calendar"></i><?php esc_html_e('Monthly Archive:','split'); ?> <span><?php echo esc_html( get_the_time('F Y') ); ?></span></h1>
|
||||
|
||||
<?php elseif ( is_year() ): ?>
|
||||
<h1><i class="far fa-calendar"></i><?php esc_html_e('Yearly Archive:','split'); ?> <span><?php echo esc_html( get_the_time('Y') ); ?></span></h1>
|
||||
|
||||
<?php else: ?>
|
||||
<h2><?php the_title(); ?></h2>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!--/.page-title-->
|
Loading…
Add table
Add a link
Reference in a new issue