Kimlik doğrulama veya yönetimden onay bekliyor.
Aşağıdaki index.php de yer alan kodlamada "poster" kısmına senin eklediğin thumbnail ismini eklersen sorun çözülecektir.
<img src="<?php $values = get_post_custom_values("poster"); echo $values[0]; ?>" alt="<?php the_title(); ?>" />
Örneğin yeni konu açtığında custom fields kısmında resimyolu olarak bir değer atadın. Aşağıdaki gibi değiştirmemn gerekiyor.
<img src="<?php $values = get_post_custom_values("resimyolu"); echo $values[0]; ?>" alt="<?php the_title(); ?>" />