更改模板时在写入帖子/页面中显示元框

发布于 2024-12-25 06:56:25 字数 108 浏览 0 评论 0原文

我可以很好地创建元框,如果我将元框分配给特定模板,它们会在“添加新页面”屏幕中很好地显示,但只有在保存新页面之后才会出现。

有没有办法在模板值更改时显示/隐藏元框...而无需先保存页面?

I can create the metaboxes just fine and if I assign a metabox to a specific template(s), they appear just fine in the Add New Page screen, but only after the new page has been saved.

Is there a way to show/hide the metabox when the template value has changed...without having to save the page first?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如痴如狂 2025-01-01 06:56:25

添加到 WP 管理页面

jQuery(document).ready(function($) {

$("#page_template").live('change',function(){

    var getCurrentTemplate = $("#page_template").val(); 

    if( getCurrentTemplate == "template-contact.php"){

            $("#pageheading-hide").attr('checked', true);
            $("#pageheading").css({'display':'block'});
    }
    else{
        $("#pageheading-hide").attr('checked', false);
        $("#pageheading").css({'display':'none'});
    }

});

});

Add to WP admin page

jQuery(document).ready(function($) {

$("#page_template").live('change',function(){

    var getCurrentTemplate = $("#page_template").val(); 

    if( getCurrentTemplate == "template-contact.php"){

            $("#pageheading-hide").attr('checked', true);
            $("#pageheading").css({'display':'block'});
    }
    else{
        $("#pageheading-hide").attr('checked', false);
        $("#pageheading").css({'display':'none'});
    }

});

});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文