Files
Fakel-Gym/template-parts/content.php
GP_DEV 3ab7ac5a79 init
2025-06-01 12:33:52 +03:00

32 lines
802 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>