File: /home/bastidas/web/bastidas.tv/public_html/wp-content/themes/mavix-marketing/inc/hook/structure.php
<?php
/**
* Theme functions related to structure.
*
* This file contains structural hook functions.
*
* @package Mavix Marketing
*/
if ( ! function_exists( 'mavix_marketing_doctype' ) ) :
/**
* Doctype Declaration.
*
* @since 1.0.0
*/
function mavix_marketing_doctype() {
?><!DOCTYPE html> <html <?php language_attributes(); ?>><?php
}
endif;
add_action( 'mavix_marketing_action_doctype', 'mavix_marketing_doctype', 10 );
if ( ! function_exists( 'mavix_marketing_head' ) ) :
/**
* Header Codes.
*
* @since 1.0.0
*/
function mavix_marketing_head() {
?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
<?php endif;
}
endif;
add_action( 'mavix_marketing_action_head', 'mavix_marketing_head', 10 );
if ( ! function_exists( 'mavix_marketing_page_start' ) ) :
/**
* Add Skip to content.
*
* @since 1.0.0
*/
function mavix_marketing_page_start() {
?><div id="page" class="site"><a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'mavix-marketing' ); ?></a><?php
}
endif;
add_action( 'mavix_marketing_action_before', 'mavix_marketing_page_start', 10 );
if ( ! function_exists( 'mavix_marketing_header_start' ) ) :
/**
* Header Start.
*
* @since 1.0.0
*/
function mavix_marketing_header_start() { ?>
<header id="masthead" class="site-header" role="banner"><?php
}
endif;
add_action( 'mavix_marketing_action_before_header', 'mavix_marketing_header_start' );
if ( ! function_exists( 'mavix_marketing_header_end' ) ) :
/**
* Header Start.
*
* @since 1.0.0
*/
function mavix_marketing_header_end() {
?></header> <!-- header ends here --><?php
}
endif;
add_action( 'mavix_marketing_action_header', 'mavix_marketing_header_end', 15 );
if ( ! function_exists( 'mavix_marketing_content_start' ) ) :
/**
* Header End.
*
* @since 1.0.0
*/
function mavix_marketing_content_start() {
?>
<div id="content" class="site-content">
<?php
}
endif;
add_action( 'mavix_marketing_action_before_content', 'mavix_marketing_content_start', 10 );
if ( ! function_exists( 'mavix_marketing_footer_start' ) ) :
/**
* Footer Start.
*
* @since 1.0.0
*/
function mavix_marketing_footer_start() { ?>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<?php
}
endif;
add_action( 'mavix_marketing_action_before_footer', 'mavix_marketing_footer_start' );
if ( ! function_exists( 'mavix_marketing_footer_end' ) ) :
/**
* Footer End.
*
* @since 1.0.0
*/
function mavix_marketing_footer_end() {?>
</footer><div class="backtotop"><i class="fas fa-caret-up"></i></div><?php
}
endif;
add_action( 'mavix_marketing_action_after_footer', 'mavix_marketing_footer_end' );