Skip to content

Instantly share code, notes, and snippets.

@duroe5698
Last active June 21, 2016 19:34
Show Gist options
  • Save duroe5698/6084ee3e3f0549b6f6bf to your computer and use it in GitHub Desktop.
Save duroe5698/6084ee3e3f0549b6f6bf to your computer and use it in GitHub Desktop.
Match sidebar to content height Genesis
jQuery(function($){
var h = document.querySelector('.content').offsetHeight;
document.querySelector('.sidebar-primary').style.height = h + "px";
});
<?php
// Enqueue resize script
add_action( 'wp_enqueue_scripts', 'md_enqueue_script' );
function md_enqueue_script() {
wp_register_script( 'md_resize', get_stylesheet_directory_uri() . '/js/resize.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'md_resize' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment