find('count', array('conditions' => array('Post.comments_count' => '< 20')); Post->find('first', array('conditions' => array('Post.comments_count' => '< 20'), 'order' => 'Post.date ASC')); Post->find('all', array('limit' => 10, 'order' => 'Post.date ASC')); ?>