Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. add_filter( 'get_the_excerpt', 'mhsales_get_community_excerpt', 999 );
  2. function mhsales_get_community_excerpt( $excerpt ) {
  3.  
  4. if ( is_admin() ) {
  5. return $excerpt;
  6. }
  7.  
  8. // check to make sure we are on the community archive
  9. if ( is_post_type_archive( 'community' ) ) {
  10. // get the content from the shortcode
  11. $excerpt = do_shortcode('[pods name="community" template="Community Excerpt for Archive Display" id="'.get_the_ID().'"]');
  12. }
  13.  
  14. return $excerpt;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement