add_action( 'wp_enqueue_scripts', 'thank_you_styles', 107 );
function thank_you_styles() {
if( is_page( 'thank-you' ) ) {
$version = '0.0.0.1';
wp_enqueue_style('thank-style', get_template_directory_uri() . '/assets/css/thank.css', [], $version );
}
}
function disable_content_editor()
{
if (isset($_GET['post'])) {
$post_ID = $_GET['post'];
} else if (isset($_POST['post_ID'])) {
$post_ID = $_POST['post_ID'];
}
if (!isset($post_ID) || empty($post_ID)) {
return;
}
$page_template = get_post_meta($post_ID, '_wp_page_template', true);
if ($page_template == 'front-page.php') {
remove_post_type_support('page', 'editor');
}
}
add_action('admin_init', 'disable_content_editor');
* {
margin: 0;
padding: 0; /* не всегда актуально, но и не навредит */
box-sizing: border-box;
}
<article id="post-<?php the_ID(); ?>" <?php post_class('blog-article'); ?>>
<header class="entry-header">
<!-- Как раз тут начинается вывод заголовка поста -->
<?php
if ( is_singular() ) :
the_title( '<h1 class="entry-title">', '</h1>' );
else :
the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
endif;
if ( 'post' === get_post_type() ) :
?>
<?php endif; ?>
</header><!-- .entry-header -->
<!-- А тут заканчивается. Остальное можно удалить. -->