This commit is contained in:
GP_DEV
2025-06-01 12:33:52 +03:00
commit 3ab7ac5a79
108 changed files with 12507 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header mb-4">
<?php the_title( sprintf( '<h1 class="entry-title text-2xl lg:text-5xl font-extrabold leading-tight mb-1"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
<time datetime="<?php echo get_the_date( 'c' ); ?>" itemprop="datePublished" class="text-sm text-gray-700"><?php echo get_the_date(); ?></time>
</header>
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages(
array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'tailpress' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'tailpress' ) . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
)
);
?>
</div>
</article>

View File

@@ -0,0 +1,31 @@
<article id="post-<?php the_ID(); ?>">
<header class="entry-header">
</header>
<?php if (is_search() || is_archive()) : ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div>
<?php else : ?>
<div class="entry-content">
<?php
// Чтобы работали таилвинд селекторы с &
remove_filter('the_content', 'wptexturize');
remove_filter('the_content', 'wp_filter_content_tags');
the_content();
// Включаем обратно для других постов
add_filter('the_content', 'wptexturize');
add_filter('the_content', 'wp_filter_content_tags');
?>
</div>
<?php endif; ?>
</article>