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/entry/entry-header.php
<?php
/**
* Template part for entry header.
*
* @link    https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package ColorMag
* @since   @TODO
*/

// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
?>
	<header class="cm-entry-header">
		<?php if ( is_singular() ) : ?>
		<h1 class="cm-entry-title">
			<?php the_title(); ?>
		</h1>
		<?php else : ?>
		<h2 class="cm-entry-title">
			<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
				<?php echo wp_kses_post( get_the_title() ); ?>
			</a>
		</h2>
		<?php endif; ?>
	</header>