“Loop Kustom WordPress” Kode Jawaban

WordPress The Loop

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

      <h2><?php the_title(); ?></h2>
      <?php the_content(); ?>

    <?php endwhile; else: ?>

      <h2><?php esc_html_e( '404 Error', 'phpforwp' ); ?></h2>
      <p><?php esc_html_e( 'Sorry, content not found.', 'phpforwp' ); ?></p>

<?php endif; ?>
Anthony Smith

Loop Kustom WordPress

$args = array(
  'post_type'      => $post,
  'post_status'    => 'publish',
  'posts_per_page' => $post_total,
  'orderby'        => 'publish_date',
  'order'          => 'DESC'
);
$loop = new WP_Query( $args );

while ( $loop->have_posts() ): $loop->the_post();
	// Your code
endwhile;
wp_reset_postdata();
Xenophobic Xenomorph

Jawaban yang mirip dengan “Loop Kustom WordPress”

Pertanyaan yang mirip dengan “Loop Kustom WordPress”

Lebih banyak jawaban terkait untuk “Loop Kustom WordPress” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya