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 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?