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 | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use Mypos\IPC\Cart; | |
use Mypos\IPC\Config; | |
use Mypos\IPC\Customer; | |
use Mypos\IPC\Defines; | |
use Mypos\IPC\IPC_Exception; |
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
/** | |
* Create a Taxonomy for Custom Post Event | |
* Paste this code in Theme function.php | |
*/ | |
add_action('init', 'create_event_taxonomy', 0); | |
if ( ! function_exists('create_event_taxonomy')) { | |
function create_event_taxonomy() | |
{ | |
register_taxonomy( |
OlderNewer