Skip to content

Instantly share code, notes, and snippets.

@tridungpham
Created July 2, 2013 10:32
Show Gist options
  • Save tridungpham/5908285 to your computer and use it in GitHub Desktop.
Save tridungpham/5908285 to your computer and use it in GitHub Desktop.
$html .= '<div class="row ' . ( $i < $items_per_big_column ? 'col-home' : '' ) . '">
<div class="span6">
<div class="container-big"><a href="'.get_permalink($the_id).'">
' . self::get_estate_thumbnail( $the_id, 'estate-showcase-big-thumbnail' ) . '</a>
<article class="text-big">
<div class="infotexthv">
<h3><a href="' . get_permalink( $the_id ) . '">' . get_the_title( $the_id ) . '</a></h3>
<p>' . PGL_Addon_Estate::the_excerpt( FALSE ) . '</p>
</div>
</article>
</div>
</div>';
$html .= '<div class="span3">
<div class="container-small"><a href="'.get_permalink($the_id).'">'
. PGL_Addon_Estate::get_estate_thumbnail( $the_id, 'estate-showcase-thumbnail' ) .
'</a><article class="text-small">
<div class="infotexthv">
<h3>
<a href="' . get_permalink( $the_id ) . '" title="' . get_the_title( $the_id ) . '">' . get_the_title( $the_id ) . '</a>
</h3>
<p>' . PGL_Addon_Estate::the_excerpt( FALSE ) . '</p>
</div>
</article>
</div>
</div>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment