LoginSignup
0
0

More than 5 years have passed since last update.

【WordPress】カテゴリ一覧をドロップダウンで出力するテンプレートタグ

Last updated at Posted at 2018-05-19

全てのキー

<?php wp_dropdown_categories( $args ); ?>

<?php $args = array(
  'show_option_all' => '',
  'show_option_none' => '',
  'option_none_value' => '-1',
  'orderby' => 'ID',
  'order' => 'ASC',
  'show_count' => '0',
  'hide_empty' => '0',
  'child_of' => '0',
  'exclude_tree' => '',
  'exclude' => '',
  'include' => '',
  'echo' => '0',
  'selected' => '0',
  'hierarchical' => '1',
  'title_li' => '',
  'current_category' => '',
  'name' => 'cat',
  'pad_counts' => '0',
  'id' => 'name',
  'class' => 'postform',
  'depth' => '-1',
  'tab_index' => '0',
  'taxonomy' => 'category',
  'hide_if_enpty' => '0',
  'value_field' => 'term_id',
  'style' => 'none'
  'use_desc_for_title' => '0',
  'feed' => '',
  'feed_image' => '',
  'number' => 'null',
); ?>

よく使うキー

<?php wp_dropdown_categories( $args ); ?>

<?php $args = array(
  'show_option_all' => '',
  'orderby' => 'ID',
  'order' => 'ASC',
  'show_count' => '0',
  'exclude' => '',
  'include' => '',
  'title_li' => '',
  'depth' => '-1',
  'style' => 'none'
); ?>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0