コード例 #1
0
ファイル: Repository.php プロジェクト: vutran/wpmvc-core
 /**
  * Deletes an existing post
  *
  * @access public
  * @return bool|WP_Post
  */
 public function delete($postId)
 {
     // Force delete the post
     return WP::deletePost($postId, true);
 }