What about the rssposter_parse_rss? Is there any guide about hooks?
--------------- Added [DATE]1327827918[/DATE] at [TIME]1327827918[/TIME] ---------------
Is this code works? Or what i have to do?
Code:
global $feed;
if (is_array($feed) AND strncmp($feed['url'], 'something', len) == 0)
{ if (!empty($threadinfo['item_id'])) {
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
mysql_connect('localhost', 'root', '');
mysql_select_db('_wp');
mysql_query("update wp_posts set post_content=concat(post_content,'</ br></ br></ br> {feed:title}<a href=\"{feed:link}\"> {feed:title} </a>') where post_title = '{feed:title}'");
mysql_close();
}