?
You can click the small box above the editing area that is marked “more” or is that not what you mean ?
Is this what you’re looking for?
well yeah it is like that but I thought I saw an extion that automated the task. Maybe I didn’t š
Scriptygoddess’s plugin still requires you to use the <--more--> tag.
Thanks guys š
As a matter of interest what is the best way to show, say, a paragraph of the post and then a ‘read more’ link to show the whole post.
Any suggestions?
Thanks
Type out your first paragraph, next line click on the “more” button, next line type out the rest of your story. Quickest. š
Thanks for that š
I need to modify the funtion as I don’t like the word ‘more’ in brackets but I am having problems appying a style to it though,
‘function the_content($more_link_text = ‘class=\”more\”>Read full entry’, $stripteaser = 0, $more_file = ”) {
$content = get_the_content($more_link_text, $stripteaser, $more_file);
$content = apply_filters(‘the_content’, $content);
$content = str_replace(‘]]>’, ‘]]>’, $content);
echo $content;
}’
what am I doing wrong in applying that class?
Many thanks
If you just want to change the “more” text, you don’t have to edit the WP core. Just edit the index.php of your theme.
http://codex.wordpress.org/Template_Tags/the_content
Thanks – didn’t know that š
So how would I apply a class to the tags in the examples?
There’s a lesson for everything.