Last active
August 29, 2015 13:56
-
-
Save stebrech/9119525 to your computer and use it in GitHub Desktop.
WordPress Snippet (für functions.php oder Plugin). Dieses Snippet fügt dem Auszug (Excerpt) in jedem Fall ein Weiterlesen-Link hinzu. Quelle: http://www.transformationpowertools.com/wordpress/read-more-on-all-excerpts-in-wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function excerpt_read_more_link($output) { | |
global $post; | |
return $output . '<a href="'. get_permalink($post->ID) . '">Read All ...</a>'; | |
} | |
add_filter('the_excerpt', 'excerpt_read_more_link'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment