HI, i think you mean, that you wanna show the wysiwyg images also in the function where you get the last items and display it anywhere. I always had the problem, that the path from my images was wrong.
The plan was, to open the last newsitem in the "long" version and display the older news on the bottom. I used the following code:
--------- insert in a code page ----------
// Specify the Group(id) you want to read the news from or 0 for all groups
$group = 0;
// Specify number of newsitems
$limit=10;
// Specify read more text
$readmore = "Weiterlesen";
// Specify Older news text
$oldernews = "Older news";
// Query for all groups

if ($group<1 ) {
$query = "SELECT * FROM ".TABLE_PREFIX."mod_news_posts WHERE active = 1 ORDER BY position DESC LIMIT 0, 10;";
}
// No changes needed here, maybe for output!
global $database;
$result = $database->query($query);
$total = $result->numRows(); // how many items are there?
if ($total>1) { // x
$data = $result->fetchRow() ; // get news item
$long=stripslashes($data['long']); //clear up the images path
echo '<table width=100%>';
echo '<tr><td width=100%><h1>'.$data['title'].'</h1></td></tr>';
echo '<tr><td>'.$long.'</td></tr>'; //view the long-version of the news
echo '<tr><td></td><td></td></tr>';
echo '</table>';
}
// Specify the Group(id) you want to read the news from or 0 for all groups
$group = 0;
// Specify number of newsitems
$limit=0;
// Specify read more text
$readmore = "Artikel lesen";
// Specify Older news text
$oldernews = "weitere Einträge";
// Query for obtaining stuff from a group
$query = "SELECT * FROM ".TABLE_PREFIX."mod_news_posts WHERE group_id = $group and active = 1 ORDER BY position DESC LIMIT 0, 10;";
// Query for all groups

if ($group<1 ) {
$query = "SELECT * FROM ".TABLE_PREFIX."mod_news_posts WHERE active = 1 ORDER BY position DESC LIMIT 1, 10;";
}
// No changes needed here, maybe for output!
global $database;
$result = $database->query($query);
$total = $result->numRows(); // how many items are there?
if ($total>1) { // at least 2 needed for 2 news items
$data2 = $result->fetchRow() ; // get left item
$data3 = $result->fetchRow() ; // get left item
$data4 = $result->fetchRow() ; // get left item
$data5 = $result->fetchRow() ; // get left item
$data6 = $result->fetchRow() ; // get left item
$data7 = $result->fetchRow() ; // get left item
$data8 = $result->fetchRow() ; // get left item
$data9 = $result->fetchRow() ; // get left item
$data10 = $result->fetchRow() ; // get left item
echo '<table class="newsoverview" width=100%>';
echo '<tr><td width="100%"><b>weitere News</b></td></tr>';
echo '<tr><td width=100%><li><a href='.WB_URL.PAGES_DIREC
TORY.$data2['link'].PAGE_EXTENSION.'>'.$data2['title'].'</a></td></tr>';
echo '<tr><td width=100%><li><a href='.WB_URL.PAGES_DIREC
TORY.$data3['link'].PAGE_EXTENSION.'>'.$data3['title'].'</a></td></tr>';
echo '<tr><td width=100%><li><a href="'.WB_URL.PAGES_DIREC
TORY.$data4['link'].PAGE_EXTENSION.'">'.$data4['title'].'</a></td></tr>';
echo '<tr><td width=100%><li><a href="'.WB_URL.PAGES_DIREC
TORY.$data5['link'].PAGE_EXTENSION.'">'.$data5['title'].'</a></td></tr>';
echo '<tr><td width=100%><li><a href="'.WB_URL.PAGES_DIREC
TORY.$data6['link'].PAGE_EXTENSION.'">'.$data6['title'].'</a></td></tr>';
echo '<tr><td width=100%><li><a href="'.WB_URL.PAGES_DIREC
TORY.$data7['link'].PAGE_EXTENSION.'">'.$data7['title'].'</a></td></tr>';
echo '<tr><td width=100%><li><a href="'.WB_URL.PAGES_DIREC
TORY.$data8['link'].PAGE_EXTENSION.'">'.$data8['title'].'</a></td></tr>';
echo '<tr><td width=100%><li><a href="'.WB_URL.PAGES_DIREC
TORY.$data9['link'].PAGE_EXTENSION.'">'.$data9['title'].'</a></td></tr>';
echo '<tr><td width=100%><li><a href="'.WB_URL.PAGES_DIREC
TORY.$data10['link'].PAGE_EXTENSION.'">'.$data10['title'].'</a></td></tr>';
echo '</table>';
}