I'm having some trouble sorting isotope elements by dates, the elements being wordpress posts, thus the date getting pulled in by php.
HTML / PHP:
<div id="blog-grid">
<div class="blog-grid date" data-time="<?php the_time('Y-m-d H:i:s') ?>">
</div>
<div class="blog-grid-text date" data-time="<?php the_time('Y-m-d H:i:s') ?>">
</div>
</div>
jQuery:
$(window).load(function(){
var $container = $('#blog-grid');
$container.imagesLoaded( function(){
$container.isotope({
itemSelector: '.blog-grid, .blog-grid-text',
sortBy: {
time: function( $elem ) {
return $elem.find('.date').attr('data-time');
}
},
animationEngine: 'best-available',
masonry: {
columnWidth: 3,
gutterWidth: 20
}
});
});
});
This doesn't seem to work, I can't find a solution that does. The date can be in any format if that helps, but I'm not exactly sure how to then sort these posts by date (descending). Any suggestions would be greatly appreciated!