我添加了以下函数来在我的主题页面中呈现Wordpress编辑器:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<?php wp_editor( $content, 'editor', $settings = array() ); ?>
<!-- scripts -->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>
</html>
好处是它为页面添加了一个工作编辑器。但是&#34;添加媒体&#34;按钮不起作用。我尝试了一些方法:为编辑器添加额外的自定义Wordpress JS,但仍然没有结果。
Javascript控制台输出:
Uncaught TypeError: Cannot read property 'audio' of undefined (media-views.min.js?ver=3.9.1:1)
Uncaught TypeError: Cannot read property 'id' of undefined (media-audiovideo.min.js?ver=3.9.1:1)
答案 0 :(得分:0)
将此代码添加到主题的functions.php
文件中:
function add_media_upload() {
if ( is_admin() ) {
return;
}
wp_enqueue_media();
}
add_action('wp_enqueue_scripts', 'add_media_upload');
这将导致媒体上传者所需资产加载到前端。
如果您只在一个特定页面上需要它,则可以使用if_page()
周围的wp_enqueue_media()
语句仅将其加载到特定页面上。
答案 1 :(得分:0)
解决方案是将以下代码添加到functions.php:
wp_enqueue_script(array('jquery', 'editor', 'thickbox', 'media-upload'));
答案 2 :(得分:0)
我喜欢@michaelrmcneill解决方案。虽然您可以删除条件逻辑,然后直接使用:
将其添加到admin_enqueue_scripts中add_action('admin_enqueue_scripts', function()
{
wp_enqueue_media();
});