Wp-Запрос — $Post В Wp_Query?

  • Автор темы Blackwoodchild
  • Обновлено
  • 21, Oct 2024
  • #1

Как получить переменную $post в запущенном цикле WP_Query?

Мне нужно получить отрывок, необработанный $post->post_content и многое другое. Вот почему мне нужно получить доступ к самой переменной.

Как я могу это сделать?

Заранее спасибо!

Blackwoodchild


Рег
03 Apr, 2009

Тем
81

Постов
216

Баллов
671
  • 25, Oct 2024
  • #2
 
 $your_query = new WP_Query( $args );
while( $your_query->have_posts() ) :

$your_query->the_post();

echo $your_query->post->post_content;

endwhile;
 
||answer|| $query = new WP_Query( $args ); while( $query->have_posts() ) { // this fills in the $post global with the next post from the query $query->the_post(); // we're now ina classic wordpress loop, and can use all the usual stuff the_title(); the_content(); echo $post->post_content; } // lets clean up after ourself so else we might mess up other queries and function calls wp_reset_postdata();
 

Андрей сергеев


Рег
24 Oct, 2020

Тем
74

Постов
199

Баллов
609
Тем
403,760
Комментарии
400,028
Опыт
2,418,908

Интересно