Well, I have a function.php that ends like this:
// Clear Helper/s
/* **************************************************************************************************** */
function n_clear() {
echo "<div class='clear'></div>";
}
It works perfectly.
Only when I add these lines:
// LEIA MAIS
add_filter('the_content_more_link', 'filter_more_link');
function filter_more_link( $link ) {
return ' <a class="read-more" href="'. get_permalink( get_the_ID() ) . '" title="Continue lendo '.get_the_title().'">Continue lendo '.get_the_title().'...</a>';
}
It shows the following error: Parse error: syntax error, unexpected '<' on line 1098 >
Does anyone know how to solve it?