Skip to content

Instantly share code, notes, and snippets.

@Netzberufler
Created September 19, 2016 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Netzberufler/68720c382ad3210290e00a40fd0e9c5b to your computer and use it in GitHub Desktop.
Save Netzberufler/68720c382ad3210290e00a40fd0e9c5b to your computer and use it in GitHub Desktop.
Read More Button nach Excerpt einfügen
<?php
/**
* Add Read More button to excerpts
*
* @param string $more_text Excerpt More Text.
* @return string
*/
function themeslug_excerpt_more( $more_text ) {
return '<a href="' . esc_url( get_permalink() ) . '" class="more-link">' . esc_html__( 'Continue reading', 'themeslug' ) . '</a>';
}
add_filter( 'excerpt_more', 'themeslug_excerpt_more' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment