Sure!
Here is the default markup:
<ol class="gtc-list">
<li>
<a class="gtc-content-thumb" href="/perspective/dampak-negatif-pariwisata/">
<img width="100" height="70" src="https://localhost/youthpro/wp-content/uploads/2016/05/2016-05-miskin-dan-kaya-pariwisata-tuca-vieira-100x70.jpg" class="attachment-kopa-image-size-3 wp-post-image alignleft wp-post-image" alt="Foto: Paraisopolis, oleh Tuca Vieira.">
</a>
<a class="gtc-link" href="/perspective/dampak-negatif-pariwisata/">Pariwisata, Tidak Seindah yang Kita dan Pemerintah Bayangkan </a>
</li>
<!-- etc -->
</ol>
I want to change it to:
<ol class="gtc-list">
<li>
<figure class="gtc-content-thumb" href="/perspective/dampak-negatif-pariwisata/">
<a href="/perspective/dampak-negatif-pariwisata/">
<img width="600" height="200" src="https://localhost/youthpro/wp-content/uploads/2016/05/2016-05-miskin-dan-kaya-pariwisata-tuca-vieira-600x200.jpg" class="attachment-kopa-image-size-3 wp-post-image wp-post-image" alt="Foto: Paraisopolis, oleh Tuca Vieira.">
</a>
</figure>
<h3 class="gtc-link">
<a href="/perspective/dampak-negatif-pariwisata/">Pariwisata, Tidak Seindah yang Kita dan Pemerintah Bayangkan </a>
</h3>
</li>
<!-- etc -->
</ol>
So, as you can see, I addde figure
to the thumbnail, added h3
to the post title, changed the image size to 600×200, and removed the alignleft
class in the image. Your help is really appreciated!