'Add link post' ) ); } function widget( $args, $instance ) { extract( $args ); echo $before_widget; if (current_user_can('publish_posts')) { ?>
(.*?)<\/[title|TITLE]>/',$content,$output, PREG_PATTERN_ORDER); $title = $output[1][0]; preg_match_all('/<[Pp].*>(.*?)<\/[Pp]>/', $content, $output,PREG_PATTERN_ORDER ); $expt = (!empty($output[0][0])) ? strip_tags($output[0][0]) : ''; $expt = substr($expt, 0 ,300); $expt .= " Read more..."; $my_post = array( 'post_title' => $title, 'post_content' => $expt, 'post_status' => 'publish'); wp_insert_post( $my_post); wp_redirect( home_url() ); exit; } } }