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 are?null
,?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-css
in the filesendinblue.php
on 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' );
- You must be logged in to reply to this topic.