Last active
August 29, 2015 14:24
-
-
Save maximejobin/3347a2bf87c2eb48ee4f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ********************************************************************************************************* | |
// À mettre dans functions.php (à la fin) : | |
function recetteplus_jquery() { | |
wp_enqueue_script( 'recetteplus.js', get_stylesheet_directory_uri() . '/js/recetteplus.js', array('jquery') ); | |
} | |
add_action( 'wp_enqueue_scripts', 'recetteplus_jquery' ); | |
// ********************************************************************************************************* | |
// Dans le répertoire du thème, dans le répertoire /js, créer "recetteplus.js" et insérer le code suivant: | |
// Ajustement de la hauteur du sidebar | |
( function( $ ) { | |
$(document).ready(function() { | |
var prm = $('#primary').height(); | |
var sec = $('#secondary').height(); | |
if (sec < prm) { | |
$('#secondary').height(prm); | |
} | |
else { | |
$('#primary').height(sec); | |
} | |
}); | |
} )( jQuery ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment