hello,
for the googlenews plugin, the syntax is this:
<?php do_action('google_news', 'feedname'); ?>
feedname is how you tell what google news to show up. so for example, if you want googlenews on automobiles..the syntax would be:
<?php do_action('google_news', 'automobiles'); ?>
i was wondering if it was possible to make "feedname" automatically be filled in with the post name (for example if the post was http://www.domain.com/honda) it would be:
<?php do_action('google_news', 'honda'); ?>
Thanks!