我正在使用高級自定義字段和我自定義作者字段(它可能是發佈商或品牌等)現在這個作者的名字不打印在產品(書)頁上。在自定義字段其作者的名字蛞蝓是「名字」高級自定義字段不返回結果
add_action('woocommerce_after_single_product_summary', "ACF_product_content", 10);
function ACF_product_content(){
echo '<h2> ACF Content </h2>';
if (function_exists('the_field')){
echo '<p>Woohoo, the_field function exists! </p>';
//the_field('authors');
echo '<pre>';
print_r(get_the_ID());
echo '</pre>';
echo '<pre>';
print_r(get_field('authors'));
echo '</pre>';
die;
}
}
爲了這個,我得到的結果 Check this report screenshot 。現在的問題是在這個數組中顯示['post_title']的作者姓名。 我嘗試了很多解決方案,但沒有工作,沒有顯示出結果。 我使用這個代碼來顯示這個結果
echo the_field('names');
「的名字」是'作者的自定義字段的字段名稱。
是不是更容易地就在這裏複製和粘貼文本,在這個問題,不是採取截圖,上傳到圖像託管服務,在此粘貼網址是什麼? – axiac