Issue with CSS Enqueue
-
We have encountered an issue with the CSS enqueue implementation. Specifically, in the function
wp_enqueue_style, the version parameter is being passed as an empty array, which is not permitted according to the WordPress Codex. The allowed values for this parameter arenull,false, or a string.This is causing our logs to fill up with repetitive warnings at an alarming rate due to our internal implementations. The issue seems to be related to the registration of the CSS file
sib-front-cssin the filesendinblue.phpon line 461. Here is the relevant section of code:wp_enqueue_style( 'sib-front-css', self::$plugin_url.'/css/mailin-front.css', array(), array(), 'all' );
The topic ‘Issue with CSS Enqueue’ is closed to new replies.