$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Multiple Custom Post Type in Taxonomy Archive Causing White Screen|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Multiple Custom Post Type in Taxonomy Archive Causing White Screen

matteradmin11PV0评论

So basically I'm trying to add multiple custom post type in my taxonomy archive. Here's my code:

    <?php
        $args_trip = array ( 
            'post_type' => 'trip' ,
            'post_status' => 'publish',
            'tax_query' => array (
                array ( 
                    'taxonomy' => 'destination',
                    'field' => 'slug',
                    'terms' => $term
                )
            )
        );

        $trips = new WP_Query( $args_trip );        
        ?>

    <?php 
    if ( $trips->have_posts() ) : ?>        
    <div class="archive-grid">
    <?php
        /* Start the Loop */
        while ( $trips->have_posts() ) : $trips->the_post();
            get_template_part( 'template-parts/content', 'trip' );

        endwhile;
        wp_reset_postdata();                    
    ?>
    </div>
    <hr>

    <?php 
    $args_wisata = array ( 
        'post_type' => 'wisata' ,
        'post_status' => 'publish',
        'tax_query' => array (
            array ( 
                'taxonomy' => 'destination',
                'field' => 'slug',
                'terms' => $term
            )
        )
    );

    $wisatas = new WP_Query( $args_wisata );

    if ( $wisatas->have_posts() ) : 
    ?>

    <div class="archive-grid">

    <?php
        /* Start the Loop */
        while ( $wisatas->have_posts() ) : $wisatas->the_post(); 
    get_template_part( 'template-parts/content', 'wisata' );


        endwhile;

    ?>

    </div>

The code above meant to output TWO different custom post type TRIP & WISATA within taxonomy archive.

BUT it always causing white screen, but when it only looping ONE custom post type, it works fine. Here's the code for only one custom post type:

    <?php
$args_trip = array ( 
    'post_type' => 'trip' ,
    'post_status' => 'publish',
    'tax_query' => array (
        array ( 
            'taxonomy' => 'destination',
            'field' => 'slug',
            'terms' => $term
        )
    )
);

$trips = new WP_Query( $args_trip );        
?>

<?php 
if ( $trips->have_posts() ) : ?>
    <div class="archive-grid">
    <?php
        /* Start the Loop */
        while ( $trips->have_posts() ) : $trips->the_post();
            get_template_part( 'template-parts/content', 'trip' );

        endwhile;
        wp_reset_postdata();            

?>
    </div>
    <hr>

I don't know what might be causing this? Really frustrate me... Please someone help me! Lol.

NOTE: my wp-config.php already has define('WP_DEBUG', true); but there is no error shown, only blank white page.

So basically I'm trying to add multiple custom post type in my taxonomy archive. Here's my code:

    <?php
        $args_trip = array ( 
            'post_type' => 'trip' ,
            'post_status' => 'publish',
            'tax_query' => array (
                array ( 
                    'taxonomy' => 'destination',
                    'field' => 'slug',
                    'terms' => $term
                )
            )
        );

        $trips = new WP_Query( $args_trip );        
        ?>

    <?php 
    if ( $trips->have_posts() ) : ?>        
    <div class="archive-grid">
    <?php
        /* Start the Loop */
        while ( $trips->have_posts() ) : $trips->the_post();
            get_template_part( 'template-parts/content', 'trip' );

        endwhile;
        wp_reset_postdata();                    
    ?>
    </div>
    <hr>

    <?php 
    $args_wisata = array ( 
        'post_type' => 'wisata' ,
        'post_status' => 'publish',
        'tax_query' => array (
            array ( 
                'taxonomy' => 'destination',
                'field' => 'slug',
                'terms' => $term
            )
        )
    );

    $wisatas = new WP_Query( $args_wisata );

    if ( $wisatas->have_posts() ) : 
    ?>

    <div class="archive-grid">

    <?php
        /* Start the Loop */
        while ( $wisatas->have_posts() ) : $wisatas->the_post(); 
    get_template_part( 'template-parts/content', 'wisata' );


        endwhile;

    ?>

    </div>

The code above meant to output TWO different custom post type TRIP & WISATA within taxonomy archive.

BUT it always causing white screen, but when it only looping ONE custom post type, it works fine. Here's the code for only one custom post type:

    <?php
$args_trip = array ( 
    'post_type' => 'trip' ,
    'post_status' => 'publish',
    'tax_query' => array (
        array ( 
            'taxonomy' => 'destination',
            'field' => 'slug',
            'terms' => $term
        )
    )
);

$trips = new WP_Query( $args_trip );        
?>

<?php 
if ( $trips->have_posts() ) : ?>
    <div class="archive-grid">
    <?php
        /* Start the Loop */
        while ( $trips->have_posts() ) : $trips->the_post();
            get_template_part( 'template-parts/content', 'trip' );

        endwhile;
        wp_reset_postdata();            

?>
    </div>
    <hr>

I don't know what might be causing this? Really frustrate me... Please someone help me! Lol.

NOTE: my wp-config.php already has define('WP_DEBUG', true); but there is no error shown, only blank white page.

Share Improve this question asked Nov 9, 2018 at 1:34 Syamsul AlamSyamsul Alam 11 silver badge6 bronze badges 3
  • You forgot to close the if - add <?php endif; ?> after those two </div> (the closing tag for the archive-grid DIV). – Sally CJ Commented Nov 9, 2018 at 3:36
  • WOW thank you so much! I've been blind the whole time!! I'm still very new about PHP and the solution actually so simple lol. Thank you!! @SallyCJ – Syamsul Alam Commented Nov 9, 2018 at 7:50
  • No problem Syamsul. Even I sometimes make such a (silly) mistake.. :) And if I may give you a tip: If you ever see that "white screen" again (on other pages) - and you couldn't find anything wrong in your code, then try looking for any PHP errors in the page source (HTML), and/or (enable debugging and) check the error_log file. =) – Sally CJ Commented Nov 9, 2018 at 8:50
Add a comment  | 

1 Answer 1

Reset to default 0

Will answer it myself to close this question / thread.

From @Sally CJ

You forgot to close the if - add <?php endif; ?> after those two </div> (the closing tag for the archive-grid DIV)

Post a comment

comment list (0)

  1. No comments so far