Do you have something like the following in your loop?
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
For the footer, do you have <?php get_footer(); ?> in your templates?
Hi,
Thank you for the response. Where should I check that line ?
Depends on the theme you’re using. It will most likely be in index.php or loop.php if it exist.
Here is the files in my template folder. I have created the template with a third party template development tool.
http://img709.imageshack.us/img709/163/filesw.jpg
And I could not see the line that you have mentioned in the index page. I also do not have a file called loop.php
Thank you..
In index.php, look for the line that looks like
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
and insert the line I’ve mentioned after it.
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
Thank you very much indeed for your time and interest. But, the only code I see in index.php under the template folder contains the following lines :
<?php
get_header();
if (have_posts())
{
while (have_posts())
{
art_post();
}
art_page_navi();
} else {
art_not_found_msg();
}
get_footer();
That’s it. Nothing more..
You’ll have to look inside the art_post() function, which I’m not sure where it is. Could be in functions.php.
Thank you. I will try to find it and give it a try..