Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Last active October 14, 2015 19:50
Show Gist options
  • Save joshfeck/a4df6cc75f2f817f688d to your computer and use it in GitHub Desktop.
Save joshfeck/a4df6cc75f2f817f688d to your computer and use it in GitHub Desktop.
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
function my_move_calendar_category_legend() {
if(is_page('calendar')) { // replace calendar with your calendar page's slug
?>
<script>
jQuery( document ).ready(function($) {
$('#espresso-category-legend').insertAfter('#espresso_calendar');
});
</script>
<?php
}
}
add_action( 'wp_print_footer_scripts', 'my_move_calendar_category_legend');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment