• Hi!

    How can I do the headbox at IMDB that the film’s title should be a link? I want to do the contents separate page and I want to get there leads through.

    <h2 class="wpmoly headbox imdb movie meta title"><?php echo $meta['title']; ?><?php if ( ! empty( $meta['year'] ) ) : ?> <span class="wpmoly headbox imdb movie meta year">(<?php echo $meta['year']; ?>)</span><?php endif; ?></h2>

Viewing 1 replies (of 1 total)
  • Plugin Author Charlie Merland

    (@caercam)

    Hi @polcsy,

    Simply wrap the title with a link should do the trick: <h2 class="wpmoly headbox imdb movie meta title"><a href="<?php echo get_permalink( $id ); ?>"><?php echo $meta['title']; ?></a><?php if ( ! empty( $meta['year'] ) ) : ?> <span class="wpmoly headbox imdb movie meta year">(<?php echo $meta['year']; ?>)</span><?php endif; ?></h2>

Viewing 1 replies (of 1 total)
  • The topic ‘Title link on IMDB headbox’ is closed to new replies.