You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Fakel-Gym/template-parts/content.php

31 lines
802 B

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