Skip to content

Instantly share code, notes, and snippets.

@PabloVallejo
Created February 4, 2014 17:10
Show Gist options
  • Save PabloVallejo/8808041 to your computer and use it in GitHub Desktop.
Save PabloVallejo/8808041 to your computer and use it in GitHub Desktop.
List_Model_Helper::thumb
<?php
/**
* TODO: Write example
*/
public static function thumb( $list_id, $size ) {
$post_id = Arr::head( List_Model::make( $list_id )->get_items() );
return Post_Model::thumb( $post_id, $size );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment