Wordpress Theme - Posts Hyperlinks problem

1 replies
Hi guys,
I have a blog. I made a WP theme from a guy who is not in contact with me.
hxxp://blog.learningcatalyst.in/

Problems :
Post's Hyperlinks are not working.
Home page posts are doubling

However, here is the current code for Linking Posts with their pages
PHP Code:
<div class="post">
            <h2><a href="<?php the_permalink() ?>"<?php the_title();  ?></a></h2> 
            <h3><?php the_time('F jS, Y'?></h3>
What to do ?
#hyperlinks #posts #problem #theme #wordpress
  • Profile picture of the author ussher
    <div class="post">
    <h2><a href="#"Google+ is here...</a></h2>
    <h3><?php the_time('F jS, Y') ?></h3>

    Your a tag is not closed.

    that should be:
    <div class="post">
    <h2><a href="#">Google+ is here...</a></h2>
    <h3><?php the_time('F jS, Y') ?></h3>
    Signature

    "Jamroom is a Profile Centric CMS system suitable as a development framework for building entire communities. Highly modular in concept. Suitable for enterprise level development teams or solo freelancers."

    - jamroom.net
    Download Jamroom free: Download
    {{ DiscussionBoard.errors[4184039].message }}

Trending Topics