juodikis
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Idn url facebook@snorrekjaer this is Facebook issue, not wordpress
Forum: Themes and Templates
In reply to: Do not strip html if excerpt is shorterOK, I figured out. Put this into functions.php
function my_custom_excerpt($text) { global $post; if ( '' == $text ) { $text = get_the_content(''); $text = apply_filters('the_content', $text); $text = str_replace('\]\]\>', ']]>', $text); $fulltext = str_replace('\]\]\>', ']]>', $text); $text = strip_tags($text, '<p>'); $excerpt_length = 100; $words = explode(' ', $text, $excerpt_length + 1); if (count($words) > $excerpt_length) { array_pop($words); array_push($words, '... <a href="'. esc_url( get_permalink() ) . '">Read more »</a>'); $text = implode(' ', $words); } else { $text = $fulltext; } } return $text; } remove_filter('get_the_excerpt', 'wp_trim_excerpt'); add_filter('get_the_excerpt', 'my_custom_excerpt');Forum: Hacks
In reply to: How to remove img tag from galleryNope, that doesn’t work. Commenting first
ifdoesn’t work as well. Commentingelsedoesn’t show any gallery at allForum: Hacks
In reply to: How to remove img tag from galleryMy functions.php you can see here
Viewing 4 replies - 1 through 4 (of 4 total)