日期:2014-11-28 阅读:3939
dmandwp系统 - wordpress系统和DM系统区块建站>>
如何在前台调自定义的栏目:
http://codex.wordpress.org/Function_Reference/get_post_meta
代码:
$key_1_value = get_post_meta( get_the_ID(), 'color', true );
//如果不带true,会返回一个数组。
// check if the custom field has a value
if( ! empty( $key_1_value ) ) {
echo $key_1_value;
}
-----------
echo gettype(the_ID());会发现,后面会带一个null
所以,只能用get_the_id(),而不是the_ID()