I made it. But now i have another question. Can i show post tittle before thumbnail images. I found these function in theme files but i couldn’t figure out
/**
* hook : tc_post_list_layout
* force content + thumb layout : Force the title to be displayed always on bottom
* @param current layout array()
*/
function tc_grid_set_content_layout( $_layout ){
$_layout[‘show_thumb_first’] = true;
$_layout[‘content’] = ‘tc-grid-excerpt’;
$_layout[‘thumb’] = ‘span12 tc-grid-post-container’;
return $_layout;
}