Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created April 16, 2016 17:24
Show Gist options
  • Save Dinamiko/6a4673987efe820eba3652904ce14afd to your computer and use it in GitHub Desktop.
Save Dinamiko/6a4673987efe820eba3652904ce14afd to your computer and use it in GitHub Desktop.
<?php
global $post;
if( $post->ID == 2125 ) {
// first update options
$ids = array(2125, 735, 733, 4, 2349);
update_option( 'dkpdfg_custom_ids', $ids );
$cover = '<html><head>';
$cover .= '<link type="text/css" rel="stylesheet" href="'. get_bloginfo( "stylesheet_url" ) .'" media="all" />';
$cover .= '<style type="text/css">';
$cover .= 'body {background:red;color:#FFF;}';
$cover .= 'h1 {font-size:100px;}';
$cover .= '</style>';
$cover .= '</head><body>';
$cover .= '<h1 style="background:blue;">This is title</h1>';
$cover .= '</body></html>';
update_option( 'dkpdfg_custom_cover', $cover );
$toc_title = 'Table of contents oh my!';
update_option( 'dkpdfg_custom_toc_title', $toc_title );
// then output the button
echo dkpdfg_custom_button( 'My custom button name' );
} else if( $post->ID == 2121 ) {
// first update options
$ids = array(2, 8422);
update_option( 'dkpdfg_custom_ids', $ids );
$cover = '<html><head>';
$cover .= '<link type="text/css" rel="stylesheet" href="'. get_bloginfo( "stylesheet_url" ) .'" media="all" />';
$cover .= '<style type="text/css">body {background:blue;color:#FFF;}</style>';
$cover .= '</head><body>';
$cover .= '<h1 style="background:blue;">This is title for a custom cover</h1>';
$cover .= '<p>Lorem ipsum dolor sit amet</p>';
$cover .= '</body></html>';
update_option( 'dkpdfg_custom_cover', $cover );
$toc_title = 'Table of contents for another stuff';
update_option( 'dkpdfg_custom_toc_title', $toc_title );
// then output the button
echo dkpdfg_custom_button( 'Just click and generate PDF :)' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment