function fanwood_child_theme_setup() { /* Get the theme prefix ("fanwood"). */ $prefix = hybrid_get_prefix(); /* ... to Read more */ add_filter( 'excerpt_more', 'my_excerpt_more' ); } function my_excerpt_more( $more ) { $more = '...

Read more →

'; return $more; }