I'm currently using
<div class="entry"><?php the_content('<br />Continue Reading » ' . get_the_title('', '', false)); ?>
To display my main content.
The content will show up like
This is a part of the more content
Continue Reading >> TITLE of the post
What should I do if I want to add [...] behind the content? To make it
This is a part of the more content [...]
Continue Reading >> TITLE of the post
I tried
<div class="entry"><?php the_content('[...]<br />Continue Reading » ' . get_the_title('', '', false)); ?>
It doesnt work because the dots are linked as well. I want the dots not linked to anywhere.