Skip to content

Instantly share code, notes, and snippets.

@gwin
Created November 17, 2023 12:37
Show Gist options
  • Save gwin/9619769b4417fa6a7bacb84265f2eb74 to your computer and use it in GitHub Desktop.
Save gwin/9619769b4417fa6a7bacb84265f2eb74 to your computer and use it in GitHub Desktop.
Cowe Trigger Navigation Thumbnails
<?php
add_action( "wp_footer", function() {
if( ! is_singular( 'advert' ) ) {
return;
}
?>
<script type="text/javascript">
jQuery(function($) {
$(".my-trigger-thumbnails").on("click", function(e) {
e.preventDefault();
WPADVERTS.Single.Gallery.Nav.Thumbnails.click();
});
});
</script>
<?php
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment