bradyvercher / gistpress

WordPress plugin to add Gist oEmbed and shortcode support with caching.
GNU General Public License v2.0
143 stars 28 forks source link

Style method hook priority #8

Closed GaryJones closed 11 years ago

GaryJones commented 11 years ago

Since the run() method of the main class is now hooked to init, the line inside run() that also hooks the registering of the style script to init needs to run at a later priority, e.g.:

add_action( 'init', array( $this, 'style' ), 15 );