📜  wordpress args - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:58.633000             🧑  作者: Mango

代码示例1
$query1 = new WP_Query( $args );
 
// The Loop
while ( $query1->have_posts() ) {
    $query1->the_post();
    echo '
  • ' . get_the_title() . '
  • '; }