<?php
/** add image indexing on initial upload */
add_action( 'add_attachment', function( $post_ID) {
FWP()->indexer->index( $post_ID );
} );
/** add image indexing on edit */
add_action( 'attachment_updated', function( $post_ID ) {
FWP()->indexer->index( $post_ID );
} );