WordPress Register Style Called Incorrectly

The notice is quite obvious. It is telling you that you are not running wp_register_style() within the wp_enqueue_scripts hook.

SOLUTION

Move your wp_register_script() and wp_register_style() calls to inside your function which is hooked to wp_enqueue_scripts

Leave a Comment