Skip to content

Instantly share code, notes, and snippets.

@MohammedKaludi
Last active May 27, 2018 18:47
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save MohammedKaludi/895e576f6fa98d00721bdc7dd7687bd7 to your computer and use it in GitHub Desktop.
Save MohammedKaludi/895e576f6fa98d00721bdc7dd7687bd7 to your computer and use it in GitHub Desktop.
Add Custom CSS in AMPforWP via Hook
add_action('amp_post_template_css','ampforwp_add_custom_css_example', 11);
function ampforwp_add_custom_css_example() { ?>
/* Add your custom css here */
body {
background: red;
}
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment