gpt4 book ai didi

wordpress - 如何在wordpress后端使用javascript

转载 作者:行者123 更新时间:2023-12-04 05:52:16 27 4
gpt4 key购买 nike

我想用 wordpress 注册一个可以在后端工作的脚本。我认为我在我的functions.php 文件中注册的任何脚本都可以工作,但它只显示在前端。任何人有任何想法如何做到这一点?

最佳答案

尝试:

<?php

add_action( 'admin_head', 'myscriptinthe_admin_header' );
function myscriptinthe_admin_header(){
echo "<script>alert( 'in the admin head!' )</script>";
}

add_action( 'admin_head', function(){ ?>
<script> alert( 'in the admin head!' ) </script>
<?php }); ?>

关于wordpress - 如何在wordpress后端使用javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9943490/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com