Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_module_excerpt', 'j_excerpt_with_html', 99, 4 );
- function j_excerpt_with_html( $excerpt, $post_id, $excerpt_length, $excerpt_more ) {
- $new_excerpt = get_the_excerpt( $post_id );
- if ( ! empty( $new_excerpt ) ) {
- return $new_excerpt;
- }
- return $excerpt;
- }
Advertisement
Add Comment
Please, Sign In to add comment