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>'; }
, 不接后续段落