2

我想知道任何已知的使用外部媒体源而不是通过 wordpress 媒体库上传的图像或视频库插件。

最坏的情况,是否有一个插件可以执行计划/更新只从文件服务器导入?

提前致谢!

4

1 回答 1

0

You can use the following code jointly with ImageZone. With ImageZone you can collect external images and share them, while the code will render them into html. The code looks like:

// where do you want to add the gallery 
<div id="GalleryId"></div>
  <style>...</style>
  // this is generated by imagezone
  <script type="text/json" id="GalleryId">...</script>
  <script type="text/javascript">
    function setup(gid){
    }
    setup("GalleryId");
  </script>

and you could make it a wp shortcode

于 2013-04-05T13:07:24.377 回答