This is quite easy if you follow the steps below
DIFFICULTY :
EASY

Just copy the code below and save with
.php then
include it anywhere in your
Wireless.template.php as done when adding links, change
$show_limit and
$table_prefix to your desired
<?php
$show_limit = 5;//Number of topics to show
$table_prefix = 'smf_';//Your SMF table prefix, if you don't know this, leave it as it is
$mysql_query = mysql_query("select * from $table_prefix"."messages order by id_msg desc limit $show_limit")or die(mysql_error());
while($db_row = mysql_fetch_array($mysql_query))
{
$id_topic = $db_row['id_topic'];
$subject_topic = $db_row['subject'];
?><a href="?topic=<?=$id_topic?>;wap2"><?=$subject_topic?></a><br/><?php
}
?>
Or you can download the php code below and include it...
But make sure you change your table prefix if its not
smf.
Ask your questions below