Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. add_filter( 'the_content_feed', function ( $content, $feed_type ) {
  2. $post_id = get_the_ID();
  3.  
  4. if ( $feed_type === 'atom' )
  5. $content = 'something else';
  6. else
  7. $content = wp_trim_words( $content, 30 );
  8.  
  9. return $content;
  10. }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement