我有一個靜態頁面有10個容器位於index.php文件中的不同位置,我想顯示10個最新的帖子。我想反映了對一個職位的數據(標題,文字,縮略圖,作者,時間)是這樣的:WordPress的打印最新帖子
<div class="text">
<?php
echo '$textfrompost3';
?>
</div>
<div class="title">
<?php
echo '$titlefrompost3';
?>
</div>
...
...
我的PHP文件:
<?php
// the query
$the_query = new WP_Query(array(
'category_name' => 'Allgemein',
'posts_per_page' => 10,
"orderby" => "date",
"order" => "DESC"
));
?>
<?php if ($the_query->have_posts()) : ?>
<?php while ($the_query->have_posts()) : $the_query->the_post(); ?>
// insert values into variables
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
在此先感謝,我很欣賞你的幫助可以提供。
可能的[如何顯示最新的帖子WordPress的]重複(HTTP ://stackoverflow.com/questions/41631565/how-to-display-latest-posts-wordpress) –
不工作,因爲它打印在一個循環下彼此的帖子我想要的變量中的10個最新帖子的數據或別的東西 –
然後試試這可能嗎? https://wordpress.stackexchange.com/questions/217299/wp-query-results-stored-in-variables - 多數民衆贊成什麼谷歌返回時搜索「WP_QUERY結果變量」 –