Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 22, 2019 13:16
Embed
What would you like to do?
Modify PDF metadata before it gets indexed in SearchWP
<?php
// Modify PDF metadata before it gets indexed in SearchWP.
add_filter( 'searchwp_pdf_metadata', function( $pdf_metadata, $post_id ) {
// TODO: Modify $pdf_metadata as you see fit.
return $pdf_metadata;
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment