<?php
/*
plugin name: ashraf world
plugin URL:http://softtechnosite.blogspot.com/
Description: sample ashraf world plugin
author:asharf
Version:1.0
Author URL:http://softtechnosite.blogspot.com/
*/
function sampleashrafworld()
{
echo "<h2>ashraf world</h2>";
}
function widget_myashrafworld($args)
{
extract($args);
echo $before_widget;
echo $before_title;?>My widget Title<?php echo $after_title;
sampleashrafworld();
echo $after_widget;
}
function myashrafworld_init()
{
register_sidebar_widget(_('ashraf world'),'widget_myashrafworld');
}
add_action("plugins_loaded", "myashrafworld_init");
?>