functions.php eklenecek kod; function ilk_onizlemeyi_al($post_id) { $id = (int) $post_id; $args = array( 'post_type' => 'attachment', 'post_mime_type' => 'image', 'numberposts' => 1, 'order' => 'ASC', 'orderby' => 'menu_order ID', 'post_status' => null, 'post_parent' => $id ); $attachments = get_posts($args); if ($attachments) { return wp_get_attachment_thumb_url( $attachments[0]->ID ); }else{ return 'http://www.siteadresi.com/resimsiz.jpg'; } } index.php, single.php veya archives.php eklenecek resim gösterme kodu; <?php $image = get_post_meta($post->ID, 'resim', true); ?><?php if ( get_post_meta($post->ID, 'resim', true) ) { ?><a href="<?php the_permalink() ?>"><img src="<?php echo get_post_meta($post->ID, "resim", true); ?>" alt="<?php the_title(); ?>" height="150" width="150" /></a><?php } else {?><a href="<?php the_permalink() ?>"> <img...


