Advanced Custom Fields

1/2ページ

「Advanced Custom Fields」の「関連」フィールドで、並び順を日付やランダムに設定する方法

Advanced Custom Fieldsの「関連」フィールドは、デフォルトでは50音順に並んでいる。 この並び順を変更するための設定記述。 ◆日付順+昇順 add_filter( 'acf/fields/relationship/query', 'custom_acf_relationship_query', 10, 3 ); function custom_acf_relationship_ […]

カスタムフィールドの値もプレビューを出来るようにする

Advanced Custom Fieldsで挿入した値がプレビューに反映されない場合、下記のコードをfunction.phpに設定する。 ※バージョンで解消されるかも // カスタムフィールドの内容をプレビューする function get_preview_id($postId) { global $post; $previewId = 0; if ( isset($_GET['preview' […]

複数のカスタムフィールドの値で記事を並び替える

例) カスタムフィールドの値を元に、それぞれ降順に並び替える。 ・sort_parent_id ・sort_child_id ・記事更新日 ※Wordpress4.2以降 <?php /** * 投稿タイプharapekoの並び順を変更する * 並び順:sort_parent_id降順、sort_child_id降順、更新日降順 * @param array $query */ functi […]