Myslím, že chápu, co tím myslíš.
Místo toho vraťte hodnotu takto
function sidebar_query(){
$rValue = "";
$query = ("SELECT sidebarposts FROM table;");
$result = mysql_query($query);
if ($row = mysql_fetch_array($result)){
$rValue = $row['sidebarposts'];
}
return $rValue;
}
Nyní můžete echo sidebar_query(); nebo co s tím chcete dělat.