• This is a bit deep-end for me. That said.

    Running Pyrmont V2. When Archives are selected, the returned posts come up as full posts, however, when category filters are selected, only the post titles are displayed.

    There seems to be no categories.php, so my understanding is that categories would fall back onto archives.php.

    Why is archives.php displaying full posts for by-month displayes, but not for categories? How can I alter this?

    Thanks much.

Viewing 1 replies (of 1 total)
  • in loop.php file
    change the_excerpt function into the_content
    or

    change
    <?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>

    to
    <?php if ( !is_category&(is_archive() || is_search() )) : // Display excerpts for archives and search. ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Pyrmont V2 – Categories display only Title.’ is closed to new replies.