WP All导入图像编辑

时间:2017-02-17 14:21:33

标签: php wordpress wpallimport

我有一个XML有两个元素名<picture><url>,我使用WP All Import来获取图片元素下载图片同时我希望元素超链接图片元件。

我的代码:

function my_custom_func() {
    $url=@url[1];
    $image=@picture[1];
echo '<a href=$url> <img url=picture[1] /> </a>';
}

但没有成功,任何帮助!

xml

<element1>
  <picture>
    http://pictureurl.image/image.jpg
  </picture>
  <url>
    http://url.image/image.jpg
  </url>
</element1>

1 个答案:

答案 0 :(得分:0)

我会如何:

function my_custom_func($url, $image) {
return <a href = $url> <img url = $image>;
}

在您想要的字段中添加

[my_custom_func({url[1]}, {picture[1]})]