groups

name language licence
Change The Default Wordpress Excerpt [...] PHP BSD
Wordpress: Page With Content From Only A Particular Category PHP BSD

< 1 2 >



language: PHP
licence: BSD

Change The Default Wordpress Excerpt [...]

options: view full snippetsend to code collector
Change The Default Wordpress Excerpt [...]

<?php function gpp_excerpt($text) { return str_replace('[...]', '<br /><a href="'.get_permalink().'">Read More →</a>', $text); } add_filter('the_excerpt', 'gpp_excerpt'); ?>
	
(Continues...)