wordpress某一文章下有一个自定义域,
内容为 images/a.jpg|images/a_1.jpg|images/a_2.jpg
如何在模板里把她通过数组的形式循环调用出来如下形式
<img src="images/a.jpg" />
<img src="images/a_1.jpg" />
<img src="images/a_2.jpg" />
找到了一个代码,部分摘抄如下:
function article_source() {
global $post;
$article_source = get_post_meta($post->ID, article_source,false);
if($article_source) {
foreach ($article_source as $article_sources){
$fullValue = explode ("|", $article_sources);
$name = $fullValue[0];
$address = $fullValue[1];
}
echo '翻译来源:<a href="'.$address.'" target="_blank">'.$name.'</a>,';
}
else {
echo '本文为本站原创,';
}
}
原文:
http://mcooo.com/wordpress-custom-fields.html
我知道通过这个能实现的,这里又多了两个问题
1.是这个代码的效率高,还是低?
2.对数据库的负荷怎么评估?会对服务器或者空间造成多大的影响?