HEX
Server: Apache
System: Linux mykonsul-referensi-wordpress-859c8c8f8d-fq4qv 6.1.0-35-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.137-1 (2025-05-07) x86_64
User: (1001)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /opt/bitnami/wordpress/wp-content/themes/bopea/single.php
<?php
get_header();
if (have_posts()) {
    while (have_posts()) {
        the_post();
        $post_layout_display = get_post_meta( get_the_ID(), 'single_post_layout', true );
        $single_post_layout_options = get_theme_mod('single_post_layout_options', 'single1');
        if(empty($post_layout_display)) {
            get_template_part('inc/misc/template', $single_post_layout_options );
        } else {
            get_template_part('inc/misc/template', $post_layout_display );            
        }
    }
}
get_footer();