We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In src/css-optimize.php, in the function load_cached_css_for_post:
src/css-optimize.php
load_cached_css_for_post
if ( is_singular() && ! is_preview() && ! is_attachment() ) {
is_singular() can return false in the front page preventing the optimized inline css from loading.
is_singular()
false
if
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
src/css-optimize.php
, in the functionload_cached_css_for_post
:is_singular()
can returnfalse
in the front page preventing the optimized inline css from loading.Investigate
is_singular()
when can this becomefalse
if
statement passThe text was updated successfully, but these errors were encountered: