2017-01-21, 05:43:19
I'm not sure I understand what you want to do.
This would display all (non-private) posts, using internal functions:
Or if you want to customize the posts' layout (and currently available NM Custom Settings are not enough for you), check the NM Addons plugin.
This would display all (non-private) posts, using internal functions:
Code:
<?php
foreach (nm_get_posts_default() as $post) {
nm_show_post($post->slug);
}
?>
Or if you want to customize the posts' layout (and currently available NM Custom Settings are not enough for you), check the NM Addons plugin.