• Hi,

    How can I make the post title a link? People can only read the post when they click on ‘Reageer/comment’

    How can I make airmail clickable?

    Quincy

Viewing 1 replies (of 1 total)
  • the code (in index.php ?, in the loop) at the moment is probably:

    <div class="title"><?php the_title(); ?></div>

    change that to:

    <div class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>

    this will change the appearance of the title; you might need to define new styles for .title a { ... } and .title a:hover { ... } etc
    https://www.w3schools.com/css/css_link.asp

Viewing 1 replies (of 1 total)
  • The topic ‘Making a link of post.’ is closed to new replies.