arie_cristianD

show full text post excerpt on jnews module

Nov 3rd, 2025
823
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. add_filter( 'jnews_module_excerpt', 'j_excerpt_with_html', 99, 4 );
  2.  
  3. function j_excerpt_with_html( $excerpt, $post_id, $excerpt_length, $excerpt_more ) {
  4.     $new_excerpt = get_the_excerpt( $post_id );
  5.     if ( ! empty( $new_excerpt ) ) {
  6.         return $new_excerpt;
  7.     }
  8.     return $excerpt;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment