first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
/**
* The template for displaying page title in page title section
*
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( is_search() ) :
printf( esc_html__( 'Search Results for: %s', 'solarify' ), get_search_query() );
return;
endif;
if ( is_home() ) :
$title = function_exists( 'fw_get_db_ext_settings_option' && function_exists( 'fw_ext_breadcrumbs' ) ) ? fw_get_db_ext_settings_option( 'breadcrumbs', 'blogpage-title' ) : esc_html__( 'Blog', 'solarify' );
echo esc_html( $title );
return;
endif;
if ( is_404() ) :
$title = function_exists( 'fw_get_db_ext_settings_option' && function_exists( 'fw_ext_breadcrumbs' ) ) ? fw_get_db_ext_settings_option( 'breadcrumbs', '404-title' ) : esc_html__( '404', 'solarify' );
echo esc_html( $title );
return;
endif;
if ( is_singular() ) :
single_post_title();
return;
endif;
if ( is_archive() ) :
the_archive_title();
return;
endif;