A
A
Alexander Mishchenko2020-05-07 18:27:34
WordPress
Alexander Mishchenko, 2020-05-07 18:27:34

How to display text on taxonomy page?

There is a custom taxonomy "METRO" which is displayed through the file taxonomy-metro.php .

<?php if ( have_posts()) : while (have_posts()) : the_post(); // если посты есть - запускаем цикл wp ?>
    <?php get_template_part('loop'); // для отображения каждой записи берем шаблон loop.php ?>
    <?php endwhile; // конец цикла
    else: echo '<br><h2>Пока в данном разделе отсутстувуют записи, возможно вас заинтересуют записи из других категорий</h2><br>';
      $recent3 = new WP_Query(
      array(
        'showposts'=> '10',
        'posts_per_page' => '10'
        )
      );
      while($recent3->have_posts()) : $recent3->the_post() ;	?>
    <?php get_template_part('loop'); // для отображения каждой записи берем шаблон loop.php ?>
    <?php endwhile; ?>		
 <?php wp_reset_query() ; ?>
      <?php endif; // если записей нет, напишим "простите" ?>	
    <?php pagination();  // пагинация, функция нах-ся в function.php ?>

On the pages, the text was displayed through the_content (), but on the taxonomy page it does not work.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Nastya, 2020-05-08
@Chupizdik

If I understand you correctly, then try this:
<?php the_archive_description( '<p>', '</p>' ); ?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question