Skip to content

Instantly share code, notes, and snippets.

@radarin
Last active June 21, 2018 21:40
Show Gist options
  • Save radarin/697ce48a111ffaff06796e713b9b1307 to your computer and use it in GitHub Desktop.
Save radarin/697ce48a111ffaff06796e713b9b1307 to your computer and use it in GitHub Desktop.
Parameter für Auszug anpassen
<?php
/* Passt die Länge der Funktion the except auf 20 Worte an. */
function wpdocs_custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'wpdocs_custom_excerpt_length', 999 );
/* Ersetzt das [...]-Weitersesen Symbol gegen einen Weiterlesen Link. */
function wpdocs_excerpt_more( $more ) {
return '&nbsp;&nbsp;&nbsp;[<a href="'.get_permalink().'"> Weiter lesen</a> ]';
}
add_filter( 'excerpt_more', 'wpdocs_excerpt_more' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment