以下代码中是否有错误?当我在内容中使用以下代码时。我的主题的php文件,然后博客上什么也没有显示,似乎有一些错误。当我评论下面的代码时,一切都恢复了正常。
<?php if (empty(get_custom_field_value("signature",""))) : ?>
—
<?php the_category( \'<span>/</span>\' ); ?>
<?php endif; ?>
这里是get_custom_field_value
功能:function get_custom_field_value($szKey, $prefix = \'\', $bPrint = false) {
global $post;
$szValue = get_post_meta($post->ID, $szKey, true);
if ( $bPrint == false ) return (empty($szValue) ? "" : $prefix . $szValue); else echo (empty($szValue) ? $szValue : $prefix . $szValue);
}