Inventory_Presser_Badges::hooks()
Source Source
File: includes/class-badges.php
public function hooks() { // If Carfax is enabled, add the badge to pages $settings = INVP::settings(); if ( isset( $settings['use_carfax'] ) && $settings['use_carfax'] ) { add_action( 'invp_archive_buttons', array( $this, 'add_carfax' ) ); add_action( 'invp_single_buttons', array( $this, 'add_carfax' ) ); } // NextGear vehicle inspections add_action( 'invp_archive_buttons', array( $this, 'add_nextgear' ) ); add_action( 'invp_single_buttons', array( $this, 'add_nextgear' ) ); }
Expand full source code Collapse full source code View on Github