Skip to content

Instantly share code, notes, and snippets.

@julien731
Last active February 14, 2022 10:12
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save julien731/a247c8927e2a5c8adf5e to your computer and use it in GitHub Desktop.
Save julien731/a247c8927e2a5c8adf5e to your computer and use it in GitHub Desktop.
Awesome Support Custom Fields Starter Kit
<?php
/**
* @package Awesome Support/Custom Fields
* @author ThemeAvenue <web@themeavenue.net>
* @license GPL-2.0+
* @link http://themeavenue.net
* @copyright 2014 ThemeAvenue
*
* @wordpress-plugin
* Plugin Name: Awesome Support: My Custom Fields
* Plugin URI: http://getawesomesupport.com
* Description: Adds custom fields to the Awesome Support ticket submission form.
* Version: 0.1.0
* Author: ThemeAvenue
* Author URI: http://themeavenue.net
* Text Domain: wpas
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
add_action( 'plugins_loaded', 'wpas_user_custom_fields' );
/**
* Register all custom fields after the plugin is safely loaded.
*/
function wpas_user_custom_fields() {
/* You can start adding your custom fields safely after this line */
/* Do NOT write anything after this line */
}
@paulopais
Copy link

Hi, its possible get the department tag to send in email notification?

@hassanshahzadaheer
Copy link

hassanshahzadaheer commented Feb 14, 2022

Hi, I added the code in the plugins folder as per the given description click here and active this plugin but now I'm not sure where to see the output of this code.
Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment