wordpresstr
Administrator
- 125
- 13 Kas 2020
ek yapmanız gereken boş bir dosya açmak ve oradaki tüm single.php içeriğinizi kopyalamak . Bunu single-attachment.php veya istediğiniz başka bir mime_type olarak kaydedebilirsiniz. Ardından döngü kodunu aşağıdaki gibi bir şeyle değiştirin:
Yukarıdaki kod sadece Resim Başlığını gösterir.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); $photographer = get_post_meta($post->ID, 'be_photographer_name', true); $photographerurl = get_post_meta($post->ID, 'be_photographer_url', true); ?> <h1><?php the_title(); ?></h1> <div class="photometa"><span class="photographername"><?php echo $photographer; ?></span> // <a href="<?php echo $photographerurl ?>" target="_blank" class="photographerurl"><?php echo $photographerurl ?></a></div> <div class="entry-attachment"> <?php if ( wp_attachment_is_image( $post->id ) ) : $att_image = wp_get_attachment_image_src( $post->id, "full"); ?> <p class="attachment"><a href="<?php echo wp_get_attachment_url($post->id); ?>" title="<?php the_title(); ?>" rel="attachment"><img src="<?php echo $att_image[0];?>" width="<?php echo $att_image[1];?>" height="<?php echo $att_image[2];?>" class="attachment-medium" alt="<?php $post->post_excerpt; ?>" /></a> </p> <?php else : ?> <a href="<?php echo wp_get_attachment_url($post->ID) ?>" title="<?php echo wp_specialchars( get_the_title($post->ID), 1 ) ?>" rel="attachment"><?php echo basename($post->guid) ?></a> <?php endif; ?> </div> <?php endwhile; ?> <?php endif; ?> |
Yukarıdaki kod sadece Resim Başlığını gösterir.