自定义字段组内的发布按钮

时间:2015-07-11 作者:Christoffer Hansen

是否可以将“发布”按钮移出“发布”元框,完全删除该元框,然后将“发布”按钮放在“自定义字段”组中?问你是否需要更多的信息,我真的不知道该说什么,除了我有什么。

以下是我在图片中的目标。

From this:enter image description here

To this:enter image description here

Or if that is to demanding then just this:enter image description here

1 个回复
SO网友:webtoure

尝试以下操作:

<div class="my-metabox">
    <!-- This is your metabox HTML -->

    <-- Add this button somewhere: -->
    <button id="my-submit" class="button button-primary button-large">Submit</button>
</div>
根据需要添加此JavaScript片段only to this screen (通过检查帖子类型并将其列在管理页脚中,或直接将其与metabox HTML一起输出):

<script type="text/javascript">
    jQuery(function($) {
        // You can substitute this with a CSS rule somewhere:
        // <style type="text/css"> #submitdiv { display: none } </style>
        // if you wish to avoid the hiding \'flicker\'
        $(\'#submitdiv\').hide();

        $(\'#my-submit\').on(\'click\', function(ev) {
            ev.preventDefault();                
            $(\'#publish\').trigger(\'click\');
        });
    });
</script>

结束

相关推荐

安装GZIP压缩后无法访问我的wp-admin

我安装了一个名为Gzip Compression的WP插件来增加speedpage,我感到非常惊讶:根本无法访问该网站,这给了我一个无效压缩形式的错误,最糟糕的是,该网站已经两周没有在互联网上显示,这将严重影响我的分析。我不是一个优秀的IT人员,但我是一个自学成才的人,随时准备学习更多。求求你,救命!苏珊娜