“WordPress Custom Loop” Ответ

WordPress петля

<?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

WordPress Custom Loop

$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

Ответы похожие на “WordPress Custom Loop”

Вопросы похожие на “WordPress Custom Loop”

Больше похожих ответов на “WordPress Custom Loop” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования