• Resolved alejodec

    (@alejodec)


    Sorry for the inconvenience, I found this code that lists descriptions of a taxonomy. It is possible with WP-PageNavi paginate?

    <?php
          $taxonomy = "actor";
          $terms =get_terms($taxonomy);
          $count=count($terms);
          if ( $count > 0 ) {
            echo "<ul>";
            foreach ($terms as $term) {
              echo "<li>" . $term->description . "</li>";
            }
            echo "</ul>";
            }
    ?>

    Thank you very much and apologies.

    https://wordpress.org/plugins/wp-pagenavi/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘WP-pagenav in listing description taxonomies.’ is closed to new replies.