Skip to content

Instantly share code, notes, and snippets.

View luisabarca's full-sized avatar
🏠
Working from home

Luis Abarca luisabarca

🏠
Working from home
View GitHub Profile
@luisabarca
luisabarca / admin.php
Last active July 25, 2019 03:01
Create a PDF file from a plugin.
<?php
add_action( 'save_post', 'bp_generate_pdf', 10, 2 );
public function bp_generate_pdf( $post_id, $post ) {
// check autosave and permissions.
$should_generate_pdf = $_POST['generatepdf'] ?? 0;
if ( $should_generate_pdf ) {