Skip to content

Instantly share code, notes, and snippets.

@meeDamian
Created January 2, 2013 18:45
Show Gist options
  • Save meeDamian/4436800 to your computer and use it in GitHub Desktop.
Save meeDamian/4436800 to your computer and use it in GitHub Desktop.
<?
$output .= '<ul class="wiadomosc">';
$n = 0;
foreach($artykuly as $a){
$thumb = get_the_post_thumbnail( $a->ID, 'full', $attr = '' );
$tytul = $a->post_title;
$tresc = $a->post_content;
$output .= "<li".(($n++ > 3 )?' class="twoja_wybrana_klasa"':"").">".$tytul."</li>\n";
}
$output .= '</ul>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment