$related_posts = get_post_meta(get_the_ID(),'post_ranking',true); $param = array( 'post_type' => 'post', 'posts_per_page' => $num, 'post__in' => $related_posts, 'orderby' => 'post__in' );
Advanced Custom Fieldsの「関連」フィールドは、デフォルトでは50音順に並んでいる。 この並び順を変更するための設定記述。 ◆日付順+昇順 add_filter( 'acf/fields/relationship/query', 'custom_acf_relationship_query', 10, 3 ); function custom_acf_relationship_ […]
$wpQuery = new WP_Query(); $param = array( 'posts_per_page' => -1, 'orderby' => 'date', 'order' => 'DESC', 'post_status' => 'publish', 'post_type' => 'post', 'meta_query' => array( a […]
「紐付けられた記事」から「紐付けた記事」を出力する <?php $item_ID = $post->ID; $array_ID = strval($item_ID); $args = array( 'post_type' => array('sample'), 'posts_per_page' => -1, 'meta_query' => array( array( […]