michaeloeser
4/4/2014 - 9:20 AM

Change the appearance of the WordPress excerpt more link

Change the appearance of the WordPress excerpt more link

<?php
// Changing excerpt more
add_filter('excerpt_more', 'new_excerpt_more');
function new_excerpt_more($more) {
    return '...<br /><a class="clear excerptmore button" href="'.get_permalink().'">'. __('Continue reading' , PRiNZ_DOMAIN).' &raquo;</a><br /><br />';
}  
?>