Skip to content

Instantly share code, notes, and snippets.

@flymke
Created November 26, 2021 08:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flymke/882b0c0bcbb95fe8ba3d34d638cb2b58 to your computer and use it in GitHub Desktop.
Save flymke/882b0c0bcbb95fe8ba3d34d638cb2b58 to your computer and use it in GitHub Desktop.
SantaPress - leave past doors visually open
add_action( 'wp_head', function () { ?>
<script>
jQuery(document).ready(function($){
$('.santapress-door.status-publish:not(:last)').find('img').css('transform', 'perspective(1200px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-45deg)');
});
</script>
<?php } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment