Skip to content

Instantly share code, notes, and snippets.

@westonruter
Created May 20, 2019 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save westonruter/2f6ea3b037336c10e3e344f55fcee4ce to your computer and use it in GitHub Desktop.
Save westonruter/2f6ea3b037336c10e3e344f55fcee4ce to your computer and use it in GitHub Desktop.
<?php
/*
* Plugin Name: Try Noscript Style
* Plugin URI: https://wordpress.org/support/topic/amp-issues-detected-by-google-search-console/
* Author: Weston Ruter
*/
add_action(
'wp_head',
function() {
?>
<noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript>
<?php
}
);
add_action(
'wp_footer',
function() {
?>
<p class="wpb_animate_when_almost_visible">test</p>
<?php
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment