将样式表和 .js 文件添加到 WordPress 中的tinyMCE 编辑器?

发布于 2024-12-07 10:27:37 字数 65 浏览 0 评论 0原文

我想要一些jquery文件和样式表到wordpress的tinyMCE编辑器的头部。关于如何执行此操作有什么建议吗?

I would like to had some jquery files and stylesheets to the head of the tinyMCE editor of wordpress. Any suggestions on how to do this?

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

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

发布评论

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

评论(1

感悟人生的甜 2024-12-14 10:27:38

使用自己的插件或tinymce设置参数

// Adds an observer to the onSaveContent event using tinyMCE.init
tinyMCE.init({
   ...
   setup : function(ed) {
      ed.onInit.add(function(ed){
         ed.dom.loadCSS( 'url_to_your_css_file' );
      });
   }
});

Use an own plugin or the tinymce setup paramter

// Adds an observer to the onSaveContent event using tinyMCE.init
tinyMCE.init({
   ...
   setup : function(ed) {
      ed.onInit.add(function(ed){
         ed.dom.loadCSS( 'url_to_your_css_file' );
      });
   }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文