get_var("SELECT post_date FROM $wpdb->posts WHERE post_type = 'post' ORDER BY post_date DESC LIMIT 1"); if ( current_time('timestamp') - strtotime($last_post) < (dopt('d_tougao_time')?dopt('d_tougao_time'):240) ){ die('sofast'); } $title = check_chart( $_POST['title'] ); $url = check_chart( $_POST['url'] ); $content = check_chart( $_POST['content'] ); if ( empty($title) || mb_strlen($title) > 100 ) { die('title'); } if ( empty($url) || mb_strlen($url) > 100 ) { die('url'); } if ( empty($content) || mb_strlen($content) > 5000 || mb_strlen($content) < 200) { die('content'); } if( $url ) $url = '

来源:'.$url.'

'; $post_content = $content.$url; $submit = array( 'post_title' => $title, 'post_author' => 1, 'post_content' => $post_content ); $status = wp_insert_post( $submit ); if ($status != 0) { if( dopt('d_tougao_mailto') ) wp_mail(dopt('d_tougao_mailto'), "站长,有新投稿! ".$title, $post_content); die('success'); }else{ die('fail'); } function check_chart($t){ return isset( $t ) ? trim(htmlspecialchars($t, ENT_QUOTES)) : ''; } ?>