Skip to content

Commit

Permalink
Remove die line
Browse files Browse the repository at this point in the history
  • Loading branch information
nylen committed Feb 25, 2020
1 parent 15a8c75 commit d083b83
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion wp-content/mu-plugins/markdown-sync/inc/class-importer.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ protected function create_post_from_manifest_doc( $doc, $post_parent = null ) {
if ( isset( $doc['title'] ) ) {
$doc['post_title'] = sanitize_text_field( wp_slash( $doc['title'] ) );
}
die( "Would create post for {$doc['slug']}" );
$post_id = wp_insert_post( $post_data );
if ( ! $post_id ) {
return false;
Expand Down

0 comments on commit d083b83

Please sign in to comment.