Advertisement
arie_cristianD

replace post subtitle with post excerpt

May 25th, 2025
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_filter( 'jnews_single_subtitle', 'replace_subtitle_with_excert', 99, 3 );
  2.  
  3.  
  4. function replace_subtitle_with_excert( $subtitle, $post_id ) {
  5.     $subtitle = get_the_excerpt( $post_id );
  6.     return $subtitle;
  7. }
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement