Thread Starter
CFCody
(@cfcody)
I fixed the other two pages.
I guess I dont understand where I would replace the code? The index page right? Right now it looks like this:
<?php
//echo get_the_excerpt().”
“;
$get_the_excerpt = trim(preg_replace(‘/<a[^>]*>(.*)<\/a>/iU’,”, get_the_excerpt()));
echo substr($get_the_excerpt, 0, 330);
if ( strlen( $get_the_excerpt ) > 330 ) {
echo ‘… Read More‘;
}
?>
what do I do? sorry.