Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2.  
  3. // We want to add a new value for %%short_excerpt%%
  4. add_filter( 'idx_plus_data_short_excerpt', 'add_short_excerpt_data_to_idx_plus', 10, 2 );
  5.  
  6. /**
  7. * Modify the data output
  8. *
  9. * @param mixed $data Data to return
  10. * @param string|null $key Data key, if set
  11. */
  12. function add_short_excerpt_data_to_idx_plus( $return, $key ) {
  13.  
  14. // Then get the excerpt
  15. if( $excerpt = IDX_Plus::get_data('excerpt') ) {
  16.  
  17. // Shorten it for the return value
  18. $return = wp_trim_words( $excerpt, 10);
  19. }
  20.  
  21. return $return;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement