OwlCyberSecurity - MANAGER
Edit File: hooks.php
<?php /** * @Packge : Edura * @Version : 1.0 * @Author : Themeholy * @Author URI : https://www.themeholy.com/ * */ // Block direct access if( ! defined( 'ABSPATH' ) ){ exit(); } /** * Hook for preloader */ add_action( 'edura_preloader_wrap', 'edura_preloader_wrap_cb', 10 ); /** * Hook for offcanvas cart */ add_action( 'edura_main_wrapper_start', 'edura_main_wrapper_start_cb', 10 ); /** * Hook for Header */ add_action( 'edura_header', 'edura_header_cb', 10 ); /** * Hook for Blog Start Wrapper */ add_action( 'edura_blog_start_wrap', 'edura_blog_start_wrap_cb', 10 ); /** * Hook for Blog Column Start Wrapper */ add_action( 'edura_blog_col_start_wrap', 'edura_blog_col_start_wrap_cb', 10 ); /** * Hook for Blog Column End Wrapper */ add_action( 'edura_blog_col_end_wrap', 'edura_blog_col_end_wrap_cb', 10 ); /** * Hook for Blog Column End Wrapper */ add_action( 'edura_blog_end_wrap', 'edura_blog_end_wrap_cb', 10 ); /** * Hook for Blog Pagination */ add_action( 'edura_blog_pagination', 'edura_blog_pagination_cb', 10 ); /** * Hook for Blog Content */ add_action( 'edura_blog_content', 'edura_blog_content_cb', 10 ); /** * Hook for Blog Sidebar */ add_action( 'edura_blog_sidebar', 'edura_blog_sidebar_cb', 10 ); /** * Hook for Blog Details Sidebar */ add_action( 'edura_blog_details_sidebar', 'edura_blog_details_sidebar_cb', 10 ); /** * Hook for Blog Details Wrapper Start */ add_action( 'edura_blog_details_wrapper_start', 'edura_blog_details_wrapper_start_cb', 10 ); /** * Hook for Blog Details Post Meta */ add_action( 'edura_blog_post_meta', 'edura_blog_post_meta_cb', 10 ); /** * Hook for Blog Details Post Share Options */ add_action( 'edura_blog_details_share_options', 'edura_blog_details_share_options_cb', 10 ); /** * Hook for Blog Details Post Author Bio */ add_action( 'edura_blog_details_author_bio', 'edura_blog_details_author_bio_cb', 10 ); /** * Hook for Blog Details Tags and Categories */ add_action( 'edura_blog_details_tags_and_categories', 'edura_blog_details_tags_and_categories_cb', 10 ); /** * Hook for Blog Details Related Post Navigation */ add_action( 'edura_blog_details_post_navigation', 'edura_blog_details_post_navigation_cb', 10 ); /** * Hook for Blog Deatils Comments */ add_action( 'edura_blog_details_comments', 'edura_blog_details_comments_cb', 10 ); /** * Hook for Blog Deatils Column Start */ add_action('edura_blog_details_col_start','edura_blog_details_col_start_cb'); /** * Hook for Blog Deatils Column End */ add_action('edura_blog_details_col_end','edura_blog_details_col_end_cb'); /** * Hook for Blog Deatils Wrapper End */ add_action('edura_blog_details_wrapper_end','edura_blog_details_wrapper_end_cb'); /** * Hook for Blog Post Thumbnail */ add_action('edura_blog_post_thumb','edura_blog_post_thumb_cb'); /** * Hook for Blog Post Content */ add_action('edura_blog_post_content','edura_blog_post_content_cb'); /** * Hook for Blog Post Excerpt And Read More Button */ add_action('edura_blog_postexcerpt_read_content','edura_blog_postexcerpt_read_content_cb'); /** * Hook for footer content */ add_action( 'edura_footer_content', 'edura_footer_content_cb', 10 ); /** * Hook for main wrapper end */ add_action( 'edura_main_wrapper_end', 'edura_main_wrapper_end_cb', 10 ); /** * Hook for Back to Top Button */ add_action( 'edura_back_to_top', 'edura_back_to_top_cb', 10 ); /** * Hook for Page Start Wrapper */ add_action( 'edura_page_start_wrap', 'edura_page_start_wrap_cb', 10 ); /** * Hook for Page End Wrapper */ add_action( 'edura_page_end_wrap', 'edura_page_end_wrap_cb', 10 ); /** * Hook for Page Column Start Wrapper */ add_action( 'edura_page_col_start_wrap', 'edura_page_col_start_wrap_cb', 10 ); /** * Hook for Page Column End Wrapper */ add_action( 'edura_page_col_end_wrap', 'edura_page_col_end_wrap_cb', 10 ); /** * Hook for Page Column End Wrapper */ add_action( 'edura_page_sidebar', 'edura_page_sidebar_cb', 10 ); /** * Hook for Page Content */ add_action( 'edura_page_content', 'edura_page_content_cb', 10 );