Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function zakra_entry_title() {
- if ( 'page-header' !== zakra_is_page_title_enabled() || is_front_page() ) {
- if ( is_singular() ) :
- the_title( '<h1 class="entry-title tg-page-content__title">', '</h1>' );
- elseif ( is_archive() ) :
- echo '<h1 class="page-title tg-page-content__title">';
- echo zakra_get_title();
- echo '</h1>';
- elseif ( is_404() ) :
- ?>
- <h1 class="page-title tg-page-content__title"><?php esc_html_e( 'Oops! That page can’t be found.', 'zakra' ); ?></h1>
- <?php
- else :
- the_title( '<h2 class="entry-title tg-page-content__title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
- endif;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment