我有一个带有自定义元数据库的自定义后期编辑屏幕,希望最后一个元数据库;保存此帖子并开始创建新帖子;。
可以很容易地将用户重定向到具有类似post new的url的新帖子创建页面。php?post\\u type=CustomPostType但是在此之前,我应该用javascript调用什么url来保存帖子?
谢谢
add_meta_box("addanotheritem", \'Add another\', \'addanother_metabox\', \'custompost\', \'side\', \'high\');
function addanother_metabox() {
?>
<script type="text/javascript">
function saveAndGo() {
jQuery(\'button.editor-post-publish-button__button\').click();
window.location=\'./post-new.php?post_type=custompost\';
return false;
}
</script>
<button onclick=\'javascript:saveAndGo();\'>save & add another</button>
<?php
}
SO网友:mik256
我知道这是一种愚蠢的解决方案,但2s超时是可以接受的解决方案
add_meta_box("addanotheritem", \'Add another\', \'addanother_metabox\', \'custompost\', \'side\', \'high\');
function addanother_metabox() {
?>
<script type="text/javascript">
function saveAndGo() {
jQuery(\'button.editor-post-publish-button__button\').click();
setTimeout(function() {
window.location=\'./post-new.php?post_type=custompost\';
}, 2000);
return false;
}
</script>
<button onclick=\'javascript:saveAndGo();\'>save & add another</button>
<?php
}