I tried using//
<?php echo get_the_excerpt(); ?>
(got that from a post dated a year ago)
But it doesn't work...
I tried using//
<?php echo get_the_excerpt(); ?>
(got that from a post dated a year ago)
But it doesn't work...
The dots are annoying :/
You can use the relevanssi_ellipsis filter hook (see user manual here) to change the ellipsis to something else (or to remove it altogether).
You can also try this:
<?php echo str_replace('...', '', get_the_excerpt()); ?>
How exactly can I add the filters though?
Filters are explained here: http://codex.wordpress.org/Plugin_API#Filters
But if writing filter functions sounds too complicated, then replacing
<?php echo get_the_excerpt(); ?>
with
<?php echo str_replace('...', '', get_the_excerpt()); ?>
should work as well.
You must log in to post.