I'm trying to get this code to work. I want to publish everything above the <!--more-->, but instead it cuts down automatically. I would not have to show some pictures (it works now). What should I do?
<p><?php echo($arr[$i]["excerpt"]); ?></p>
The entire code of the publication is as follows:
<div id="slides">
<?php for ($i = 1; $i <= $featured_num; $i++) { ?>
<div class="slide">
<?php print_thumbnail($arr[$i]["thumb"], $arr[$i]["use_timthumb"], $arr[$i]["fulltitle"] ,$width, $height); ?>
<div class="overlay"></div>
<div class="description">
<h2 class="title"><a href="<?php echo($arr[$i]["permalink"]); ?>"><?php echo($arr[$i]["title"]); ?></a></h2>
<p><?php echo($arr[$i]["excerpt"]); ?></p>
<a href="<?php echo($arr[$i]["permalink"]); ?>" class="readmore"><span><?php _e('läs mer','Professional'); ?></span></a>
</div> <!-- end .description -->
</div> <!-- end .slide -->
<?php }; ?>
</div> <!-- end #slides-->