İçindekiler Eklentisi Arıyorum
4
●82
- 17-10-2020, 23:05:00
$args = array('cat'=>1); $the_query = new WP_Query( $args ); // The Loop if ( $the_query->have_posts() ) { echo '<ul>'; while ( $the_query->have_posts() ) { $the_query->the_post(); echo '<li>' . get_the_title() . '</li>'; } echo '</ul>'; } else { // no posts found } /* Restore original Post Data */ wp_reset_postdata();$args = array('cat'=>1);
buradaki 1 kategori id'si. (https://developer.wordpress.org/refe...ory-parameters)
Detay için: https://developer.wordpress.org/refe...sses/wp_query/