WordPressにて、wp_get_archivesを使って月別アーカイブを作っています。
php
1 2<?php 3$args = array( 4 'type' => 'monthly', 5 'limit' => '', 6 'format' => 'html', 7 'before' => '', 8 'after' => '', 9 'show_post_count' => true, 10 'echo' => 1, 11 'order' => 'DESC', 12 'post_type' => 'post' 13); 14wp_get_archives( $args ); 15 16$args_02 = array( 17 'type' => 'monthly', 18 'limit' => '', 19 'format' => 'option', 20 'before' => '', 21 'after' => '', 22 'show_post_count' => true, 23 'echo' => 1, 24 'order' => 'DESC', 25 'post_type' => 'post' 26); 27?> 28 29<select name="archive-dropdown" onChange='document.location.href=this.options[this.selectedIndex].value;'> 30<option value="" selected>2017年</option> 31<?php wp_get_archives($args_02); ?> 32</select> 33
現在はこのようなソースになっております。
理想の表示は、
2018年のみの月別アーカイブをリストで表示
その下に
2017年のみの月別アーカイブをドロップダウンで表示
wp_get_archivesではどうしても【年指定】ができないので皆様に相談したく思います。
他のWPタグで良いのがあれば教えていただけると幸いです...
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/01/11 13:51