簡體   English   中英

WordPress存檔頁面“無帖子”添加

[英]WordPress archive page “no posts” addion

我的代碼:

 <?php $today = date('d/m/Y'); $the_query = new WP_Query( array( 'post_type' => 'show', 'meta_key' => 'date', 'meta_value' => ''.$today.'' ) ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); require('post.php'); endwhile; // Reset Post Data wp_reset_postdata(); ?> 

當帖子= 0時,如何添加“沒有帖子”?

僅在條件是否滿足條件下投放廣告

    <?php 
    if ($the_query->have_posts()) :
    while ( $the_query->have_posts() ) : $the_query->the_post();

    // you contents goes here

    endwhile;


    else :

    echo "<h2>There is no post</h2>";

    endif; ?>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM