【发布时间】:2013-03-26 20:43:56
【问题描述】:
我想知道任何已知的图像或视频库插件,它们使用外部媒体源,而不必通过 wordpress 媒体库上传。
最坏的情况,是否有一个插件可以执行计划/更新只从文件服务器导入?
提前致谢!
【问题讨论】:
-
only import form a file server是什么意思 -
“仅更新”所以增量加载。
我想知道任何已知的图像或视频库插件,它们使用外部媒体源,而不必通过 wordpress 媒体库上传。
最坏的情况,是否有一个插件可以执行计划/更新只从文件服务器导入?
提前致谢!
【问题讨论】:
only import form a file server是什么意思
您可以将以下code 与ImageZone 结合使用。 使用 ImageZone,您可以收集外部图像并共享它们,而代码会将它们呈现为 html。代码如下:
// 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>
你可以把它变成一个 wp 短代码
【讨论】: