News Manager: Custom post images/thumbnails - examples

(since 2.5)

No image in full/single posts

Create/edit component nm-top-single and insert:
<?php nm_disable_images(); ?>

Images only in main news page

- Create/edit component nm-init and insert:
<?php nm_disable_images(); ?>

- Create/edit component nm-top-main and insert:
<?php nm_enable_images(); ?>

Different image sizes

Example:
150x120 thumbnails in the main news page, 600x400 in single/full posts, 100x100 in tag pages, no images in others (archives and search results)

nm-top-main
nm_set_image_size(150,120);

nm-top-single
nm_set_image_size(640,400);

nm-top-tag
nm_set_image_size(100,100);

nm-top
<?php nm_disable_images(); ?>