链接到wordpress中的自定义插件上的另一个页面

I want to call insert_alert.php through this below Add New link. Please help with what code is to be added or which action or hook is required to do this.

demo1.php

<h3>LIST OF ALERTS
  <a href="<?php echo admin_url('admin.php?page=insert_alert_action'); ?>"
  class="btn btn-primary btn-xs" role="button">Add New</a></h3>

insert_alert.php PSEUDOCODE

function alert_options() {
  <div class="wrap">
  <h2>Alert</h2>
  <form method="post" action="<?php echo get_admin_url()."admin-post.php"; ?>">       
    <p><strong>Alert Title:</strong><br />
      <input type="text" name="title" size="20" required/>        
    </p>
    <p><strong>Alert Content:</strong><br />
      <textarea name="content" required></textarea>
    </p>
    <input type="hidden" name="action" value="submit-form" />        
    <p><input type="submit" name="Submit" value="Save Alert" /></p>
  </form>
  </div>
}

enter image description here