Last active
August 10, 2016 21:45
-
-
Save BFTrick/73363c9b6f6d4d7de8ce to your computer and use it in GitHub Desktop.
A Ninja Forms PDF Form Submissions template with a logo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* PDF Included With Form Submission | |
* | |
* @author Patrick Rauland | |
* @version 1.0.0 | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly | |
?> | |
<html> | |
<head> | |
<link type="text/css" href="pdf.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<img src="../../../themes/your-theme/logo.png"/> | |
<h1><?php echo $title; ?></h1> | |
<?php echo $table; ?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment