Current Path : /home/theafprt/conviviality360.com/wp-content/themes/salient/nectar/hooks/ |
Current File : /home/theafprt/conviviality360.com/wp-content/themes/salient/nectar/hooks/hooks.php |
<?php /** * Salient Theme Hooks. * * @package Salient WordPress Theme * @subpackage hooks * @version 10.5 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } /** * After body open tag. */ function nectar_hook_after_body_open() { do_action( 'nectar_hook_after_body_open' ); } /** * Before Header Navigation. */ function nectar_hook_before_header_nav() { do_action( 'nectar_hook_before_header_nav' ); } /** * After outer wrap open (#ajax-content-wrap). */ function nectar_hook_after_outer_wrap_open() { do_action( 'nectar_hook_after_outer_wrap_open' ); } /** * Before page/post content begins. */ function nectar_hook_before_content() { do_action( 'nectar_hook_before_content' ); } /** * After page/post content ends. */ function nectar_hook_after_content() { do_action( 'nectar_hook_after_content' ); } /** * Pull right menu items. */ function nectar_hook_pull_right_menu_items() { do_action( 'nectar_hook_pull_right_menu_items' ); } /** * Secondary header layout menu items. */ function nectar_hook_secondary_header_menu_items() { do_action( 'nectar_hook_secondary_header_menu_items' ); } /** * Off canvas menu bottom meta. */ function nectar_hook_ocm_bottom_meta() { do_action( 'nectar_hook_ocm_bottom_meta' ); } /** * Before footer widgets. */ function nectar_hook_before_footer_widget_area() { do_action( 'nectar_hook_before_footer_widget_area' ); } /** * After footer widgets. */ function nectar_hook_after_footer_widget_area() { do_action( 'nectar_hook_after_footer_widget_area' ); } /** * Before outer wrap close (#ajax-content-wrap). */ function nectar_hook_before_outer_wrap_close() { do_action( 'nectar_hook_before_outer_wrap_close' ); } /** * After WP footer. */ function nectar_hook_after_wp_footer() { do_action( 'nectar_hook_after_wp_footer' ); } /** * Before body close tag. */ function nectar_hook_before_body_close() { do_action( 'nectar_hook_before_body_close' ); } ?>