Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_action('transition_post_status','first_publish_set',10,3);
  2. function first_publish_set($new, $old, $post) {
  3.  
  4. if ($new == 'publish' && $old != 'publish' && isset($post->post_type)) {
  5. FWP()->indexer->index( $post->ID);
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement