![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/matelopsrp.com/wp-content/themes/master-business/inc/hook/ |
<?php /** * Theme functions related to structure. * * This file contains structural hook functions. * * @package Master_Business */ if ( ! function_exists( 'master_business_doctype' ) ) : /** * Doctype Declaration. * * @since 1.0.0 */ function master_business_doctype() { ?><!DOCTYPE html> <html <?php language_attributes(); ?>><?php } endif; add_action( 'master_business_action_doctype', 'master_business_doctype', 10 ); if ( ! function_exists( 'master_business_head' ) ) : /** * Header Codes. * * @since 1.0.0 */ function master_business_head() { ?> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> <?php } endif; add_action( 'master_business_action_head', 'master_business_head', 10 ); if ( ! function_exists( 'master_business_page_start' ) ) : /** * Page Start. * * @since 1.0.0 */ function master_business_page_start() { ?> <div id="page" class="hfeed site"> <?php } endif; add_action( 'master_business_action_before', 'master_business_page_start' ); if ( ! function_exists( 'master_business_page_end' ) ) : /** * Page End. * * @since 1.0.0 */ function master_business_page_end() { ?></div><!-- #page --><?php } endif; add_action( 'master_business_action_after', 'master_business_page_end' ); if ( ! function_exists( 'master_business_content_start' ) ) : /** * Content Start. * * @since 1.0.0 */ function master_business_content_start() { ?><div id="content" class="site-content"><div class="container"><div class="inner-wrapper"><?php } endif; add_action( 'master_business_action_before_content', 'master_business_content_start' ); if ( ! function_exists( 'master_business_content_end' ) ) : /** * Content End. * * @since 1.0.0 */ function master_business_content_end() { ?></div><!-- .inner-wrapper --></div><!-- .container --></div><!-- #content --><?php } endif; add_action( 'master_business_action_after_content', 'master_business_content_end' ); if ( ! function_exists( 'master_business_header_start' ) ) : /** * Header Start. * * @since 1.0.0 */ function master_business_header_start() { ?><header id="masthead" class="site-header" role="banner"><div class="container"><?php } endif; add_action( 'master_business_action_before_header', 'master_business_header_start' ); if ( ! function_exists( 'master_business_header_end' ) ) : /** * Header End. * * @since 1.0.0 */ function master_business_header_end() { ?></div><!-- .container --></header><!-- #masthead --><?php } endif; add_action( 'master_business_action_after_header', 'master_business_header_end' ); if ( ! function_exists( 'master_business_footer_start' ) ) : /** * Footer Start. * * @since 1.0.0 */ function master_business_footer_start() { $footer_status = apply_filters( 'master_business_filter_footer_status', true ); if ( true !== $footer_status ) { return; } ?><footer id="colophon" class="site-footer" role="contentinfo"><div class="container"><?php } endif; add_action( 'master_business_action_before_footer', 'master_business_footer_start' ); if ( ! function_exists( 'master_business_footer_end' ) ) : /** * Footer End. * * @since 1.0.0 */ function master_business_footer_end() { $footer_status = apply_filters( 'master_business_filter_footer_status', true ); if ( true !== $footer_status ) { return; } ?></div><!-- .container --></footer><!-- #colophon --><?php } endif; add_action( 'master_business_action_after_footer', 'master_business_footer_end' );