2018-04-22, 18:53:36
I posted this code in the sidebar, because the old one did not work, but how do I do now to show 3 news?
Code:
<div class="nm_post">
<h3 class="nm_post_title"><?php nm_render_title(); ?></h3>
<p class="nm_post_date">Published on <?php nm_render_date(); ?></p>
<?php if (nm_must_render_author()) { ?>
<p class="nm_post_author">Author: <em><?php nm_render_author(); ?></em></p>
<?php } ?>
<?php if (nm_must_render_image()) { ?>
<div class="nm_post_image"><?php nm_render_image(); ?></div>
<?php } ?>
<div class="nm_post_content">
<?php nm_render_content(); ?>
</div>
<?php if (nm_has_tags()) { ?>
<p class="nm_post_meta"><b>Tags:</b> <?php nm_render_tags(); ?></p>
<?php } ?>
</div>