Hi, habe grade durch Zufall (programmiere noch meinen Blog neu) die Lösung für das Problem gefunden.
jQuery muss man bei Wordpress grundsätzlich in der footer.php einbinden. Umzwar unmittelbar vor dem </body> Tag:
<!-- Load jQuerey from google. We also need jQuerey UI to animate color -->
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1");
google.load("jqueryui", "1");
</script>
<!-- Load our local script -->
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.masonry.min.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
jQuery(window).load(function(){
jQuery('#container').masonry({
// options
itemSelector : '.item',
columnWidth : 240
});
});
/* ]]> */
</script>
</body>
Funktioniert wunderbar und die Admin Bar ist da wo sie sein soll :-)
Noch mal ein großes Dankeschön an Art fo Pic!