• File: header.php
  • Full Path: /home/romi/public_html/wp-content-20260417071838/themes/career-portfolio/header.php
  • Date Modified: 04/23/2023 12:07 AM
  • File size: 1.85 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * The header for our theme
 *
 * This is the template that displays all of the <head> section and everything up until <div id="content">
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package Career_Portfolio
 */
?>
<?php 
	/*
	 * Hook- career_portfolio_action_doctype
	 *
	 * @hooked - career_portfolio_doctype -10
	*/
	do_action( 'career_portfolio_action_doctype' );
	?>
	<head>
		<?php 
			/*
			 * Hook - career_portfolio_action_head
			 *
			 * @hooked - career_portfolio_head -10
			*/
			do_action( 'career_portfolio_action_head' );		
		?>
		<?php wp_head(); ?>
	</head>
<body <?php body_class(); ?>>
	<?php if ( function_exists( 'wp_body_open' ) ) { 
		wp_body_open(); 
	} else{
		do_action( 'wp_body_open' );
	}?>
	<?php 
		/*
		 * Hook - career_portfolio_action_before
		 *
		 * @hooked - career_portfolio_page_start -10
		*/ 
		do_action( 'career_portfolio_action_before' );

		/*
		 * Hook - career_portfolio_action_before_header
		 *
		 * @hooked career_portfolio_header_start - 10
		 *
		*/
		do_action( 'career_portfolio_action_before_header' );

		/*
		 * Hook - career_portfolio_action_header
		 *
		 * @hooked career_portfolio_header - 10
		 *
		*/
		do_action( 'career_portfolio_action_header' );	

		/*
		 * Hook - career_portfolio_action_after_header
		 *
		 * @hooked career_portfolio_header_end - 10
		 *
		*/
		do_action( 'career_portfolio_action_after_header' );

		/*
		 * Hook - career_portfolio_action_before_content
		 *
		 * @hooked - career_portfolio_content_start -10
		 *
		*/
		do_action( 'career_portfolio_action_before_content' );
		
		/*
		 * Hook - career_portfolio_action_header_banner
		 *
		 * @hooked - career_portfolio_header_banner -10
		 *
		*/
		do_action( 'career_portfolio_action_header_banner' );	
	?>