2016-09-19 1 views
0

ich einige Tutorials und nichts erforscht ...Wordpress - Seite als Kategorie

kann mir jemand sagen, wie ich nur die Kategorie „News“ in der Artikelseite drucken?

Thema Onepress *

<main id="main" class="site-main" role="main"> 
       <?php if (have_posts()) : ?> 

        <?php /* Start the Loop */ ?> 
        <?php while (have_posts()) : the_post(); ?> 

         <?php 

          /* 
          * Include the Post-Format-specific template for the content. 
          * If you want to override this in a child theme, then include a file 
          * called content-___.php (where ___ is the Post Format name) and that will be used instead. 
          */ 
          get_template_part('template-parts/content', 'list'); 
         ?> 

        <?php endwhile; ?> 

        <?php the_posts_navigation(); ?> 

       <?php else : ?> 

        <?php get_template_part('template-parts/content', 'none'); ?> 



<?php endif; ?> 
       </main><!-- #main --> 

Antwort

0

Vielleicht ist der einfachste Weg, um Ihre eigene Abfrage zu erstellen:

// WP_Query arguments 
$args = array (
    'post_type'    => array('news'), 
    'post_status'   => array('publish'), 
    'posts_per_page'   => '-1', 
); 

// The Query 
$query = new WP_Query($args); 

// The Loop 
if ($query->have_posts()) { 
    while ($query->have_posts()) { 
     $query->the_post(); 
     // do something 
    } 
} else { 
    // no posts found 
} 

// Restore original Post Data 
wp_reset_postdata(); 

Dies gibt Ihnen alle Abfrageergebnisse, die: veröffentlicht und der ‚news‘ custom Post-Typ.

// WP_Query arguments 
$args = array (
    'post_status'   => array('publish'), 
    'category_name'   => 'news', 
    'posts_per_page'   => '-1', 
); 

// The Query 
$query = new WP_Query($args); 

// The Loop 
if ($query->have_posts()) { 
    while ($query->have_posts()) { 
     $query->the_post(); 
     // do something 
    } 
} else { 
    // no posts found 
} 

// Restore original Post Data 
wp_reset_postdata(); 

Die zweite gibt Ihnen alle Abfrageergebnisse, die veröffentlicht werden und in der Kategorie "Nachrichten".

Verwandte Themen