Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1> wp_head アクションが起動したときに実行される関数を登録します。
add_action('wp_head', 'my_function');
2>ヘッダーで必要なものを関数にエコーさせます:
function my_function() { echo '<select> <option>1</option> </select>'; }