Update post title font size

This commit is contained in:
Tetrakern 2024-08-01 19:26:09 +02:00
parent 134326f4f5
commit 684182e3a4
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ remove_filter( 'posts_where', 'fictioneer_exclude_protected_posts' );
<article id="post-<?php the_ID(); ?>" class="post">
<header class="post__header">
<h2 class="post__title"><a href="<?php the_permalink(); ?>"><?php echo $title; ?></a></h2>
<h2 class="post__title h1"><a href="<?php the_permalink(); ?>"><?php echo $title; ?></a></h2>
<div class="post__meta layout-links"><?php echo fictioneer_get_post_meta_items( array( 'no_cat' => true ) ); ?></div>
</header>

View File

@ -37,7 +37,7 @@ if (
<article id="post-<?php echo $post_id; ?>" class="post <?php if ( ! $nested ) echo 'padding-left padding-right'; ?>">
<header class="post__header">
<h2 class="post__title"><a href="<?php the_permalink(); ?>"><?php echo $title; ?></a></h2>
<h2 class="post__title h1"><a href="<?php the_permalink(); ?>"><?php echo $title; ?></a></h2>
<div class="post__meta layout-links"><?php echo fictioneer_get_post_meta_items(); ?></div>
</header>