-2
A
回答
1
<?php
function latest_post() {
$args = array(
'posts_per_page' => 3, /* how many post you need to display */
'offset' => 0,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post', /* your post type name */
'post_status' => 'publish'
);
$query = new WP_Query($args);
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php echo get_the_post_thumbnail('thumbnail'); ?>
/* here add code what you need to display like above title, image and more */
<?php
endwhile;
endif;
}
add_shortcode('lastest-post', 'latest_post');
?>
- 加入上面的代碼function.php文件。
- 之後,粘貼shortcode下面你想顯示最新的帖子。
- 埃丁側:最新的-交]
- 在文件:
<?php echo do_shortcode('[lastest-post]'); ?>
0
<?php
//Query 3 recent published post in descending order
$args = array('numberposts' => '3', 'order' => 'DESC','post_status' => 'publish');
$recent_posts = wp_get_recent_posts($args);
//Now lets do something with these posts
foreach($recent_posts as $recent)
{
echo 'Post ID: '.$recent["ID"];
echo 'Post URL: '.get_permalink($recent["ID"]);
echo 'Post Title: '.$recent["post_title"];
//Do whatever else you please with this WordPress post
}
?>
相關問題
- 1. wordpress如何顯示最近更新的頁面和帖子
- 2. 如何在Wordpress中的循環外顯示最新的帖子?
- 3. 如何在wordpress中顯示最新帖子的圖片
- 4. 如何在其他網站上顯示WordPress的最新帖子?
- 5. 最新帖子if else - wordpress
- 6. WordPress最新帖子輪播
- 7. 如何顯示WordPress的帖子摘錄?
- 8. WordPress的顯示帖子
- 9. 顯示帖子 - WordPress的
- 10. WordPress的帖子不顯示
- 11. 顯示最新的帖子來自wordpress中的指定類別
- 12. 顯示wordpress中最新分類標準的所有帖子
- 13. WordPress的 - 靜態首頁應該顯示最新帖子
- 14. WordPress的:如何顯示最受好評的帖子?
- 15. 如何顯示默認帖子時顯示自定義帖子wordpress?
- 16. 如何在未運行wordpress的子域上顯示WordPress帖子?
- 17. Rails顯示帖子最新評論
- 18. 從帖子到帖子在Wordpress循環頁面顯示所有帖子顯示
- 19. 顯示每個帖子類型的最新帖子
- 20. Rails:顯示除最新帖子外的所有帖子
- 21. 如何在wordpress中顯示自定義帖子類型的每個類別的最新帖子
- 22. WordPress:防止顯示子類別帖子
- 23. 如何在博客應用上顯示最新帖子?
- 24. 如何顯示5個最新帖子的所有月份?
- 25. WordPresspress:顯示來自不同WordPress網站(子域)的最新帖子
- 26. WordPress的帖子最後的帖子
- 27. 最新帖子bootstrap網格wordpress
- 28. 拉最新論壇WordPress內的帖子
- 29. Wordpress - 強制最新帖子第一
- 30. WordPress的最新帖子精選圖像