• Can you help players in my film and I’m trying to show pictures, but also single.php is not?

    <ul class="content">
        <li class="oyuncu-k">
    <a class="resim" href="/oyuncu/tom-cruise.html" title="Tom Cruise Films">
       <img src="tom-cruise.jpg" alt="Tom Cruise"/>
       <span class="isim">Tom Cruise</span>
    </a>
    <div class="orta"><p class="aciklama">Tom Cruise</p></div>
       </li>
    </ul>
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Panzehit

    (@panzehit)

    <?php
    $terms = get_the_terms( $post->ID , 'oyuncular' );
    foreach( $terms as $term ) { ?>
    <li class="oyuncu-k"><a>">
    image Code ????
    <span class="isim"><?php echo $term->name; ?></span><div class="orta"><p class="aciklama">Oyuncu</p></div>
    </a>
    <?php unset($term); } ?>

    image Code ?

    Plugin Author Ben Huson

    (@husobj)

    Try using:

    echo apply_filters( 'taxonomy-images-list-the-terms', '' );

    that may be suitable for your needs.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Single.php image link’ is closed to new replies.