分类
wordpress 调用文章自定义栏目字段custom fields值实现方法

wordpress 调用文章自定义栏目字段custom fields值实现方法.
ID, 'rehub_offer_name', true );
$itemurl = get_post_meta( $post->ID, 'rehub_offer_product_url', true );
$itemimg = get_post_meta( $post->ID, 'rehub_offer_product_thumb', true );
$itemdes = get_post_meta( $post->ID, 'rehub_offer_product_desc', true );
// Checks and displays the retrieved value
if( !empty( $itemname) ) { ?>
其中rehub_offer_xxx 为自定义栏目的名称。