$post
Wordpressで次または前の投稿のオブジェクトを取得する方法はありますか?
質問する
115 次
1 に答える
0
<?php
//get_adjacent_post($in_same_cat,$excluded_categories,$previous)
$nextPost = get_adjacent_post(false, '', false);
$previousPost = get_adjacent_post(false, '', true);
?>
詳細はこちら:http ://codex.wordpress.org/Function_Reference/get_adjacent_post
于 2012-04-27T15:22:15.863 に答える