featured post in the header not working on pages
-
i’m using the following code to show a featured post in the header:
<div id=”feature”>
<?php foreach( $feature_post as $post ) : setup_postdata( $post ); ?>
<?php $feature_post_id = $post->ID; ?>
<div class=”post” id=”<?php echo($feature_post_id);?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content( ‘ler mais…’, ????????? ); ?>
</div>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>the problem is, when i browse a page, it shows the text after the “read more” link.
link: https://www.brunoamaral.com
does anyone have a clue on what is causing the problem ?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘featured post in the header not working on pages’ is closed to new replies.