【WordPress】タグクラウドをドロップダウンメニュー化する方法。
2009年 6月 8日 22時 19分 月曜日

【WordPress】タグクラウドをドロップダウンメニュー化する方法。

フォーラムのほうで質問して、解答をゲット!

以下の方法で実現可能。


<?php $tags = get_tags(); if ( $tags ) : ?>
		<select onchange="document.location.href=this.options[this.selectedIndex].value;">
			<option value="" selected="selected">タグドロップダウンメニュー</option>
<?php foreach ( $tags as $tag ): ?>
			<option value="<?php echo clean_url( get_tag_link( $tag->term_id ) ); ?>"><?php echo wp_specialchars( $tag->name ); ?></option>
<?php endforeach; ?>
		</select>
<?php endif; ?>

わかってしまえば簡単ですね。


Category
Hacks
Tags
,
Comments
0
Previous
Next
Leave a Reply

コメントを投稿する 


次のタグを使うことができます : <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>