Temat: linku w opisie kategorii w WordPress
Miałęm chwile czasu i znalazłem rozwiązanie.
Default-owo na stronie głównej i kategorii posty są prezentowane za pomocą funkcji the_except()
parametry tej funkcji znajdziemy w
wp-includes/formatting.php.
function wp_trim_excerpt($text) { // Fakes an excerpt if needed
global $post;
if ( '' == $text ) {
$text = get_the_content('');
$text = apply_filters('the_content', $text);
$text = str_replace('\]\]\>', ']]>', $text);
$text = strip_tags($text);
$excerpt_length = 55;
$words = explode(' ', $text, $excerpt_length + 1);
if (count($words)> $excerpt_length) {
array_pop($words);
array_push($words, '[...]');
$text = implode(' ', $words);
}
}
return $text;
}
wystarczy zakomentować $text = strip_tags($text);
efekt - prezentowane linki
http://handelzchinami.edu.pl/Antoni P. edytował(a) ten post dnia 10.06.11 o godzinie 13:18