dongwen5336 2013-07-11 13:11
浏览 64
已采纳

jQuery:同位素,按日期排序

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!

  • 写回答

1条回答 默认 最新

  • doumengwei0138 2013-07-11 13:13
    关注

    Format your dates to Unix Timestamp first. That way you sort by a integer value. Pass your time-string to strtotime() to convert it easily.

    Then I don't really temember, but I think you need to set the default sorting as well. Set that to time in that case.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?