This file contains hidden or 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 | |
// Get the text from the text box | |
$text = stripslashes($_POST["text"]); | |
// Open a temporary file | |
$directory = './temp'; | |
$prefix = 'temp_'; | |
$temp_filename = tempnam( $directory, $prefix ); | |
// Make sure the temp file was created |
This file contains hidden or 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 | |
flush_rewrite_rules(); | |
/* COUPON CATEGORY TAXONOMY | |
* **************************************************************************************/ | |
add_action( 'init', 'coupons_register_category_taxonomy' ); | |
function coupons_register_category_taxonomy() { | |
$labels = array( | |
'name' => 'Coupon Category', | |
'singular_name' => 'Coupon Category', |