Skip to content

Instantly share code, notes, and snippets.

@albionselimaj
Created October 10, 2022 14:46
Show Gist options
  • Save albionselimaj/ea69ed26162fffb5b307490395db0075 to your computer and use it in GitHub Desktop.
Save albionselimaj/ea69ed26162fffb5b307490395db0075 to your computer and use it in GitHub Desktop.
Index post on publish
add_action( 'wp_insert_post', function( $post_id ) {
$post = \Voxel\Post::get( $post_id );
if ( $post && $post->is_managed_by_voxel() && $post->get_status() === 'publish' ) {
$post->index();
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment