What is the equivalent hook for both admin_head() and wp_head() combined, if any?
Question
I know about wp_head
and admin_head
for hooking into the respective head
s, but what is the hook for both of these combined, if any?
The purpose is to:
add_action('wp_head', 'custom_css');
add_action('admin_head', 'custom_css');
One add_action()
instead of two would be cleaner.
0
2 months
2023-04-08T06:05:17-05:00
2023-04-08T06:05:17-05:00 0 Answers
0 views
0
Leave an answer