Remove the Read More and ellipses
-
I am trying to completely remove the Byline, Read More and the […] from the GMP slider on my main page at https://episcopaldigitalnetwork.com/gc.
StudioPress had me change modify the CSS with:
p.byline.post-info {
display: none;
}.tab_container .more-link {
display: none;
}And that removed the byline and the Read More, but not the […].
They suggested adding this to the functions.php file:
//* Remove read more
add_filter( ‘get_the_content_more_link’, ‘child_read_more_link’ );
function child_read_more_link() { return ‘ ;
}But that returned this error:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE in /home/content/30/8386430/html/wp-content/themes/centric-pro/functions.php on line 203
Any ideas on how to remove the […]? Thanks!
Jake
- The topic ‘Remove the Read More and ellipses’ is closed to new replies.