Link to home
Start Free TrialLog in
Avatar of Trevor Local
Trevor Local

asked on

"read more" link on blog posts not working

Hi - there's a "read more" link on each blog entry of my blog page, but it doesn't link through to the single blog post page. It's linking to the blog page. Not sure where to look to fix that. Any help much appreciated. thanks!

blog page
SOLUTION
Avatar of Raghu Mutalikdesai
Raghu Mutalikdesai
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Trevor Local
Trevor Local

ASKER

It seems I'll have an easier time with removing the current "read more" and using a plugin to re-insert it.

From this page http://codex.wordpress.org/Customizing_the_Read_More it talks about removing the "read more" link. Its states:

To remove the teaser:

Change the_content(); in your index.php to (i.e., the second parameter controls this):

the_content('',FALSE,'');

I don't see "the_content" in my index.php file. I looked at both the child and parent index.php file.
To remove the teaser:

Change the_content(); in your index.php to (i.e., the second parameter controls this):
the_content('',FALSE,'');

Open in new window

I'm seeing some other posts about creating code in the child theme style.css to remove the "read more", but I don't see the actual code to insert.
To remove the teaser:

Change the_content(); in your index.php to (i.e., the second parameter controls this):
the_content('',FALSE,'');

Open in new window

thank you