【发布时间】:2016-04-07 19:01:10
【问题描述】:
我在我的 WordPress 主题中使用选项树。我正在尝试设置一个主题选项来上传图像以更改徽标图像。一切都已设置,但我正在使用此代码来显示输出,但它不起作用。我该如何解决这个问题?
<?php
if ( function_exists( 'ot_get_option' ) ) {
$images = explode( ',', get_post_meta( get_the_ID(), 'logo_image_url', true ) );
if ( !empty( $images ) ) {
foreach( $images as $id ) {
if ( !empty( $id ) ) {
$thumb_img_src = wp_get_attachment_image_src( $id, 'logo-small' );
echo '<img src="'. $thumb_img_src[0].'" alt="" />';
} //ENDIF EMPTY ID
} //ENDFOREACH
} //ENDIF EMPTY IMAGES
} //ENDIF FUNCTION EXISTS
?>
【问题讨论】: