Inventory_Presser_Shortcode_Vin
Contents
Description Description
Creates a shortcode that outputs a vehicle identification number.
Source Source
File: includes/shortcode/class-shortcode-vin.php
class Inventory_Presser_Shortcode_Vin { /** * Adds two shortcodes * * @return void */ public function add() { add_shortcode( 'invp-vin', 'invp_get_the_vin' ); add_shortcode( 'invp_vin', 'invp_get_the_vin' ); } /** * Adds hooks that power the shortcode * * @return void */ public function hooks() { add_action( 'init', array( $this, 'add' ) ); } }
Expand full source code Collapse full source code View on Github