'; $result = $wpdb->get_results("select * from $wpdb->posts where post_status='publish'"); $random = array(); foreach ($result as $result) { array_push($random,$result->ID); } shuffle($random); for ($i=0;$i<$count;$i++) { echo "
  • "; $post = get_post($random[$i]); $title = $post->post_title; $excerpt = substr(strip_tags($post->post_content),0,300); $link = get_permalink($random[$i]); echo "

    $title

    $excerpt"; echo "
  • "; } echo ''; echo $after_widget; echo "\n"; echo "\n"; echo "\n\n\n\n"; echo ""; } function arp_control () { if ($_POST["arp_submit"]) { update_option("arp_title",$_POST["title"]); update_option("arp_count",$_POST["count"]); update_option("arp_interval",$_POST["interval"]); } $title = get_option("arp_title"); $count = get_option("arp_count"); $interval = get_option("arp_interval"); echo ""; echo "

    Title:

    "; echo "

    Max Items :

    "; echo "

    Interval per transition : second(s)

    "; echo "

    Help ?

    "; } function arp_register () { register_sidebar_widget("AJAX Random Post","arp_widget"); register_widget_control("AJAX Random Post","arp_control"); } add_action('plugins_loaded','arp_register'); // by Julian Widya Perdana FTE UGM Yogyakarta 2009 ?>