outside ループから前後の投稿を取得するにはどうすればよいですか。カスタムのSELECTクエリ(get_posts
またはWP_Query
を使用)以外のことをすべて試みると、ページの内容がさらに細かくなります。
私は現在再帰的な関数を持っています。これはうまくいけば、特定の条件を満たす最初の "前の"投稿を見つけるでしょう。私はget_previous_post()
からテストするための最初の値を取得しますが、previous_previous_post()
を取得する方法がわかりません。
add_action( 'wp_ajax_nopriv_myajax-submit', 'ajax_project_load' );
add_action( 'wp_ajax_myajax-submit', 'ajax_project_load' );
function ajax_project_load() {
$the_slug = $_POST['slug'];
$args=array(
'name' => $the_slug,
'post_type' => 'projects',
'post_status' => 'publish',
'showposts' => 1,
'ignore_sticky_posts' => 1
);
$my_posts = get_posts($args);
if( $my_posts ) :
global $post;
$post = $my_posts[0];
$postCapabilityFilter = $_POST['capFilter']=='undefined' ? $_POST['capFilter'] : substr($_POST['capFilter'], 1);
$response = json_encode( "Success" );
header( "Content-Type: application/json" );
$next_post = get_previous_post();
function filtered_next_post($next_post){
if($next_post){
$next_slug = $next_post->post_name;
$next_ID = $next_post->ID;
global $wpdb;
global $postCapabilityFilter;
$querystr = "
SELECT $wpdb->postmeta.*
FROM $wpdb->posts, $wpdb->postmeta
WHERE $wpdb->posts.post_type = 'projects'
AND $wpdb->posts.post_status = 'publish'
AND $wpdb->posts.ID = $next_ID
AND $wpdb->posts.ID = $wpdb->postmeta.post_id
AND $wpdb->postmeta.meta_key = '_slideshow_content'
ORDER BY $wpdb->posts.post_name DESC
";
$nextProjQuery = $wpdb->get_results($querystr, OBJECT);
foreach($nextProjQuery as $nextProj):
$nextProjMetaArr = unserialize($nextProj->meta_value);
foreach ($nextProjMetaArr['slides'] as $npSlideArr){
echo 'and..';
if ( !in_array( $postCapabilityFilter, $npSlideArr['slideCap'] ) ){
echo 'not in it..';
//$next_post = get_previous_previous_post();
//filtered_next_post($next_post);
}
}
endforeach;
return $next_slug;
}
}
$next_slug = filtered_next_post($next_post);
get_previous_post()
とget_next_post()
を見てみると、どちらもget_adjacent_post()
を使って前の投稿または次の投稿を見つけることができます。
現在の投稿のIDに基づいて直前の投稿のIDを取得したいとしましょう。これはあなたがしたいことです:
function get_previous_post_id( $post_id ) {
// Get a global post reference since get_adjacent_post() references it
global $post;
// Store the existing post object for later so we don't lose it
$oldGlobal = $post;
// Get the post object for the specified post and place it in the global variable
$post = get_post( $post_id );
// Get the post object for the previous post
$previous_post = get_previous_post();
// Reset our global object
$post = $oldGlobal;
if ( '' == $previous_post ) {
return 0;
}
return $previous_post->ID;
}
あなたは次の投稿のIDを取得するために同様のことをすることができます...そしてあなたが前の前の投稿を取得する必要があるならあなたはこれを再帰的に行うことができます:
$two_posts_ago = get_previous_post_id( get_previous_post_id( $post->ID ) );
基本的に、get_previous_post()
とget_next_post()
はどちらもグローバルな$post
オブジェクトを参照して選択します。関数を呼び出す前にこのオブジェクトを設定する必要があります。そうしないと、next/previousの参照として使用する投稿がわかりません。
上記のラッパー関数は、渡されたIDに基づいてグローバルな$post
を設定するだけです。 IDではなく前の投稿のオブジェクト全体を返すようにすることもできます。それは完全にあなた次第です。
ここでは、カスタムSQLクエリ&フィルタget_{$adjacent}_post_where
を使って特定の投稿タイプの隣接投稿を取得できます。デフォルトの隣接は前です。結果は$current_post_date
および比較演算子$op
にも依存します。
function bm_get_adjacent_post( $post_id, $author_id, $previous = 1 ) {
global $wpdb;
if ( ( ! $post = get_post( $post_id ) ) )
return null;
$current_post_date = $post->post_date;
$adjacent = $previous ? 'previous' : 'next';
$op = $previous ? '<' : '>';
$order = $previous ? 'DESC' : 'ASC';
$where = apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare( "WHERE p.post_date $op %s AND p.post_type = %s AND p.post_status = 'publish' AND p.post_author = %d", $current_post_date, 'projects' , $author_id ), '', '' );
$sort = apply_filters( "get_{$adjacent}_post_sort", "ORDER BY p.post_date $order LIMIT 1" );
$query = "SELECT p.ID FROM $wpdb->posts AS p $where $sort";
//echo $query;
$result = $wpdb->get_var( $query );
if ( null === $result )
$result = '';
if ( $result )
$result = get_post( $result );
return $result;
}