2010-02-27, 06:49:40
Hi friends! Here is a variant of the news-manager plugin, with the title option. This version can be used by managing a WP-like loop in your template file. This example shows a list of news titles...
This allows you to customize completely the layout and gives you more freedom about what to show. Other template tags you can use inside the loop are naturally: the_NM_date() - the_NM_content().
I will post the editing feature as soon as possible.
Check it out.
Bye
Code:
<?php NM_init(); ?>
<?php if(has_NM_event()) : ?>
<ul>
<?php while(has_NM_event()) : the_NM_event(); ?>
<li><?php the_NM_title(); ?></li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
I will post the editing feature as soon as possible.
Check it out.
Bye