HEX
Server: Apache/2.4.37 (CentOS Stream) OpenSSL/1.1.1k
System: Linux ysnet.com.tw 4.18.0-553.5.1.el8.x86_64 #1 SMP Tue May 21 05:46:01 UTC 2024 x86_64
User: test (521)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /var/www/test/wp-content/themes/mix-blog/front-page.php
<?php
/**
 * The front page template file
 *
 * This is the most generic template file in a WordPress theme
 * and one of the two required files for a theme (the other being style.css).
 * It is used to display a page when nothing more specific matches a query.
 * E.g., it puts together the home page when no home.php file exists.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Shadow Themes
 */

get_header(); 
    $default = kavine_blog_get_default_mods();
    $category_list_position = get_theme_mod( 'kavine_blog_category_list_position', 'on-top' );
// Call home.php if Homepage setting is set to latest posts.
if ( ( is_front_page() || is_home() )) {
    get_template_part( 'inc/homepage/banner' ); 
	get_template_part( 'inc/homepage/recent' );
	
	 

	if ( is_home() ) {

		include( get_home_template() );
	}
}
 
get_footer();