I plan to write the following articles:
"; $list=""; if ($af1title!="") { $list.="
  • $af1title"; if ($af1desc!="") $list.=" - $af1desc"; $list.="
  • "; } if ($af2title!="") { $list.="
  • $af2title"; if ($af2desc!="") $list.=" - $af2desc"; $list.="
  • "; } if ($af3title!="") { $list.="
  • $af3title"; if ($af3desc!="") $list.=" - $af3desc"; $list.="
  • "; } if($list!="") { $content=$content.$tmp.""; } else { $content=$content; } } return $content; } function af_add_pages() { add_menu_page('Forecast', 'Forecast', 8, __FILE__, array(&$this, 'af_write_forecast')); add_submenu_page(__FILE__, 'Options', 'Options', 8, 'af_options_forecast', array(&$this, 'af_options_forecast')); add_submenu_page(__FILE__, 'Introduced ', 'Introduced', 8, 'af_introduced_forecast', array(&$this, 'af_introduced_forecast')); } function af_write_forecast() { if(isset($_POST['postforecast'])) { echo "

    Forecast saved

    "; update_option("af1title", $_POST['af1title']); update_option("af2title", $_POST['af2title']); update_option("af3title", $_POST['af3title']); update_option("af1desc", $_POST['af1desc']); update_option("af2desc", $_POST['af2desc']); update_option("af3desc", $_POST['af3desc']); } $af1title= str_replace("\\", "", get_option("af1title")); $af2title= str_replace("\\", "", get_option("af2title")); $af3title= str_replace("\\", "", get_option("af3title")); $af1desc= str_replace("\\", "", get_option("af1desc")); $af2desc= str_replace("\\", "", get_option("af2desc")); $af3desc= str_replace("\\", "", get_option("af3desc")); if ($af1title=="") $af1title="Title"; if ($af2title=="") $af2title="Title"; if ($af3title=="") $af3title="Title"; if ($af1desc=="") $af1desc="Description"; if ($af2desc=="") $af2desc="Description"; if ($af3desc=="") $af3desc="Description"; echo "
    "; echo "
    "; echo "
    "; echo "
    "; echo "
    "; echo "
    "; echo "
    "; echo "
    "; echo "
    "; echo "
    "; echo ""; echo "
    "; } function af_options_forecast() { echo "
    "; echo "more functions in the future version..."; echo "
    "; } function af_introduced_forecast() { echo "
    "; ?>

    Article Forecast is a plugin for Wordpress, it recording the articles you plan to write and show the titles in your blog buttom.

    Reader reading your blog, see your planing, they would be back to your blog in some days later, so you get more traffic and more returning pageviews.

    If you have any problem or proposal, please email me: jvyyuie@gmail.com

    Or, you can find more about Article-Forecase follow address: http://shangning.net/article-forecast/

    "; } } $af &= new articleforecast(); ?>