PDF Upload from Input Error
PDF Upload from Input Error
PDF Upload from Input Error
Create a pdf from the entries in DB
Merge PDF files from post custom fields(ACF) into one PDF file and respond back the created PDF file, WordPress(AJAX Request)
Thumbnails not being generated for PDF files
Contact form 7 send product PDF after submit
Automatically add tag (first 4 characters) to uploaded media
You can hook into add_attachment and/or edit_attachment actions and carry out an update on your separate database with the appropriate info. In both cases the attachment ID seems to be the only argument but you can easily get_post or get_post_meta if you need anything else. Cheers!
I recommend this plugin all of the time even though I have no association whatsoever with the plugin or the author of it. It’s free and allows you to add custom upload fields and all kinds of goodies to your edit screens without touching code. It’s called Advanced Custom Fields. Some developers would frown upon … Read more
You can put this in your theme functions.php file, It will work in any browser ( I tested this since it uses an iframe) and auto embed .pdf files from the media tab when you click “insert into post”. You can alter the width and height parameters for the size when its added to the … Read more
I’d say you’re gonna need external assistance… Zend Framework https://stackoverflow.com/a/4520725 $pdf = Zend_Pdf::load($pdfPath); echo $pdf->properties[‘Title’] . “\n”; echo $pdf->properties[‘Author’] . “\n”; XMP PHP Toolkit https://stackoverflow.com/a/8862702 XMP Toolkit PHP Extension is a PHP module which includes the Adobe XMP Toolkit SDK. This PHP5 extension will provide classes and methods to manipulate XMP Metadatas from files like … Read more