Frontend Styles not being included
-
Hi,
in some cases the action to include the frontend styles will fail, as the theme handles the footer differently.add_action( 'get_footer', array( $this, 'styles' ), 100 );
Using this action might be the better solution and works perfectly
add_action( 'wp_footer', array( $this, 'styles' ), 100 );
Thanks for your hard work and keep it up
Alex
- The topic ‘Frontend Styles not being included’ is closed to new replies.