dashwall/inc/page-title.php
Alexander Agnarson fe0be23838 Initial commit
2025-03-27 14:38:21 +01:00

66 lines
No EOL
2.3 KiB
PHP

<div class="page-card stickywrap page-title">
<?php if ( is_home() ) : ?>
<h2 class="stickywrap-heading"><?php echo dashwall_blog_title(); ?></h2>
<?php elseif ( is_single() ): ?>
<?php elseif ( is_page() ): ?>
<h1 class="stickywrap-heading"><?php the_title(); ?></h1>
<?php elseif ( is_search() ): ?>
<h1 class="stickywrap-heading">
<?php if ( have_posts() ): ?><?php endif; ?>
<?php if ( !have_posts() ): ?><?php endif; ?>
<?php $search_results=$wp_query->found_posts;
if ($search_results==1) {
echo $search_results.' '.esc_html__('search result','dashwall');
} else {
echo $search_results.' '.esc_html__('search results','dashwall');
}
?>
</h1>
<div class="page-title-box">
<?php esc_html_e('For the term','dashwall'); ?> "<span><?php echo get_search_query(); ?></span>".
<?php if ( !have_posts() ): ?>
<?php esc_html_e('Please try another search:','dashwall'); ?>
<?php endif; ?>
<?php get_search_form(); ?>
</div>
<?php elseif ( is_404() ): ?>
<h1 class="stickywrap-heading"><?php esc_html_e('Error 404','dashwall'); ?></h1>
<div class="page-title-box">
<p><?php esc_html_e( 'The page you are trying to reach does not exist, or has been moved. Please use the menus or the search box to find what you are looking for.', 'dashwall' ); ?></p>
<?php get_search_form(); ?>
</div>
<?php elseif ( is_author() ): ?>
<?php $author = get_userdata( get_query_var('author') );?>
<h1 class="stickywrap-heading"><?php echo $author->display_name;?></h1>
<?php elseif ( is_category() ): ?>
<h1 class="stickywrap-heading"><?php echo single_cat_title('', false); ?></h1>
<?php elseif ( is_tag() ): ?>
<h1 class="stickywrap-heading"><?php echo single_tag_title('', false); ?></h1>
<?php elseif ( is_day() ): ?>
<h1 class="stickywrap-heading"><?php echo esc_html( get_the_time('F j, Y') ); ?></h1>
<?php elseif ( is_month() ): ?>
<h1 class="stickywrap-heading"><?php echo esc_html( get_the_time('F Y') ); ?></h1>
<?php elseif ( is_year() ): ?>
<!--<h1 class="stickywrap-heading"><?php echo esc_html( get_the_time('Y') ); ?></h1>-->
<?php else: ?>
<h2 class="stickywrap-heading"><?php the_title(); ?></h2>
<?php endif; ?>
<?php if ( ! is_paged() ) : ?>
<?php the_archive_description( '<div class="page-title-box">', '</div>' ); ?>
<?php endif; ?>
</div>