Query for it.... something like (you'll have to play with it):
PHP Code:
$myid=$this->profile->userinfo['userid'];
$getthreads = $vbulletin->db->query_first("
SELECT thread.threadid,thread.title,thread.dateline,thread.forumid,thread.firstpostid, post.pagetext
FROM " . TABLE_PREFIX ."thread
LEFT JOIN " . TABLE_PREFIX ."post ON (post.postid=thread.firstpostid)
WHERE postuserid = '$myid' AND forumid=26 AND sticky=0
ORDER BY thread.dateline DESC
LIMIT 1
");
That should get you what you need and then do what you want with the results. I have NOT tested that query AT ALL. Play with this on a test site, not a live site.