arie_cristianD

show real excerpt on archive page

Jul 21st, 2025
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. add_filter( 'jnews_module_excerpt', 'customize_jnews_excerpt_on_archive', 99, 4 );
  2.  
  3. function customize_jnews_excerpt_on_archive( $excerpt, $post_id, $excerpt_length, $except_more ) {
  4.     $post = get_post( $post_id );
  5.     if ( is_archive() ) {
  6.         $new_excerpt = $post->post_excerpt;
  7.         if ( ! empty( $new_excerpt ) ) {
  8.             $excerpt = $new_excerpt;
  9.         }
  10.     }
  11.     return $excerpt;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment