Please enter a search term to begin your search.

Anaconda Theme Frequently Asked Questions (FAQ)

When listing the posts by categories, how can I change the symbol “[…]” and make it a link to the Permanent link of the post similar to the main index page?

Open theloop.php (using Presentation/Theme Editor) and look for:

<?php if (is_archive() or is_search()) {
the_excerpt();
} else {
the_content("Continue reading '" . the_title('', '', false) . "'");
} ?>

Change it to:

<?php if (is_search()) {
the_excerpt();
} else {
the_content("Continue reading '" . the_title('', '', false) . "'");
} ?>

If you want to change it to simply Read more >> then use:

<?php if (is_search()) {
the_excerpt();
} else {
the_content("Read more >>");
} ?>

If you do not want this ([…]) even in search page then use this:

<?php the_content("Continue reading '" . the_title('', '', false) . "'"); ?>
When listing the posts by categories, the links doesn´t appear. Why the links are not activated ?

In categories and search view, by default, the excerpt is shown which doesn’t display the links. Follows the steps above (question 1) to solve this. It takes care of both the problems.