wp-content/plugins foldernewspage folder into that folderTo display your NewsPage on a page of your blog, create a page and add the following line to it anywhere: <!--newspage--> or [newspage]
Or, alernatively, you can also add the following php code to a template on your blog: <?php if (function_exists('newsPage')) newsPage(); ?>
If you want to limit how many feeds are displayed, like if you were displaying a couple on a frontpage, and the rest on another page, you could call it like this: <?php if (function_exists('newsPage')) newsPage(2); ?>
You can also specify topics for each feed, you can then call a list of those topics using the follow: <!--newstopics--> or [newstopics limit=5 topic="web design"] or by placing the following directly in a template: <?php if (function_exists('newsTopics')) newsTopics(); ?>
With this functionality, you can choose to list only feeds in a certain topic by the following: [newspage limit=5 topic="web design"] or <?php if (function_exists('newsPage')) newsPage(20,"web design"); ?>
This will tell the plugin to display your activity feed at that location.




