我找到了一种方法来完成它,但我对这个过程不是很满意。如果您找到更好的方法,请添加您的答案。同时,这可能会有所帮助。
add_action(\'admin_head-edit.php\',\'addCustomImportButton\'));
我只需要在编辑页面上使用这个,所以我使用admin\\u head-edit。php操作,但您可以使用admin\\u head或其他(不是很具体的要求)
/**
* Adds "Import" button on module list page
*/
public function addCustomImportButton()
{
global $current_screen;
// Not our post type, exit earlier
// You can remove this if condition if you don\'t have any specific post type to restrict to.
if (\'module\' != $current_screen->post_type) {
return;
}
?>
<script type="text/javascript">
jQuery(document).ready( function($)
{
jQuery(jQuery(".wrap h2")[0]).append("<a id=\'aspose_doc_popup\' class=\'add-new-h2\'>Import</a>");
});
</script>
<?php
}