Wordpress welcome message plugin
This simple plugin helps to write a welcome message on the homepage which can be modified from the wordpress admin panel.
Wordpress welcome message plugin
This simple plugin helps to write a welcome message on the homepage which can be modified from the wordpress admin panel.
Installation
Just download, unzip the plugin and upload in the wordpress plugin folder (wp-content/plugins)
Add the following lines on the homepage
$res=mysql_query("select * from welcome") or die("cannot read the welcome message");
$row=mysql_fetch_array($res); echo $row["welcome"]
?>