Thanks, Mike, but that’s not really the solution I was looking for. I want to be able to add a “read more” link to some posts, not universally. And I would prefer the read more link jump to the spot in the post, not to the top of the post.
No I think you missed the link I referred to, the poster gave these instructions:
1, Write to the loop:
<?php the_content(‘Read more…’); ?>
2, Write the quicktag <!–more–> while in editing workflow. (In text editor.)
But I don’t know where to find the loop, see my 1st post.
Standard loop (looks bit different than in Codex) for Hueman main blog page starts in index.php
But if you look at line 15
<?php get_template_part('content'); ?>
it leads to content.php
Only place where you can try inserting that PhP code is there, but I am not sure that code that a poster placed is correct.
You should use part with <div “class=”entry excerpt” > near the bottom, but mentioned code will not produce effects you want.
Specially, don’t understand “I want to be able to add a “read more” link to some posts, not universally.”.
You can achieve this maybe with post ID or some kind of variable inside the post.
If you are pretty familiar with PhP, you can try inserting new class of your own (I’m really still not sure that I understand complete idea, you know the best what you want).
So, only thing I’m sure that you should start from content.php (for standard main blog page with featured slider).
I leave the rest of experiments to you (hope this helped a bit) and post the solution if you succeed 🙂
Good luck,
Mike
I did it the way you outlined in your link above.Thanks!
You’re welcome, if that’s all, please mark [resolved]