I was wondering if it's possible to use this:
<?php the_content('Read more »'); ?>
to set a maximum amount of characters to display before the "read more".
Thanks in advance!
I was wondering if it's possible to use this:
<?php the_content('Read more »'); ?>
to set a maximum amount of characters to display before the "read more".
Thanks in advance!
Nevermind, got it :)
<?php echo substr(the_content($before = '', $after = '...', FALSE), 0, 40); ?>
err - is not working :(
This topic has been closed to new replies.