Excerpts strange behavior…
-
I’ve created a child theme and made a new page in which I make the call
<?php get_template_part( 'content', 'aside' ); ?>
and to controll the except I use the wordpress “tag” <!–more–>
This works just fine on the home page, but it will not function on other pages.Anyone got any ideas?
To solve temporarely the problem I had to make another page and call it by
<?php get_template_part( 'content', 'glesus' ) ?>
and in that page write
<?php the_excerpt(__('Continue Reading →', 'pilotfish')); ?>
but that do not work as expected since the <!–more–> “tag” does not get changed in the right place.You may see what am talking about on: https://www.glesus.it
here the <!–more–> tag works, but on this page it does not: https://www.glesus.it/holidays/
- The topic ‘Excerpts strange behavior…’ is closed to new replies.