HEX
Server: Apache
System: Linux server.tanduk.space 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: coachou (1042)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/coachou/www/wp-content/themes/colormag/template-parts/hooks/header/top-bar.php
<?php
/**
 * Top bar hooks.
 *
 * @package ColorMag
 *
 * TODO: @since
 */

// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;

/*========================================= Hooks > Header Top ==========================================*/

if ( ! function_exists( 'colormag_header_top' ) ) :

	/**
	 * Header top.
	 * TODO: @since
	 */
	function colormag_header_top() {

		get_template_part( 'template-parts/header/top', 'bar' );
	}
endif;

add_action( 'colormag_action_header_top', 'colormag_header_top', 10 );