对于任何有同样问题的人,这里有一个答案。我终于明白了。
// Display Profile Sidebar ACF
add_action(\'genesis_sidebar\', \'employee_title\');
function profile_photo() {
if ( is_singular(\'profile\') && genesis_get_custom_field(\'employee_title\') )
echo \'<div id="employee-title"> \'. genesis_get_custom_field(\'employee_title\') .\'</div>\';
}
这是Genesis中的挂钩位置,自定义字段数据需要输出到:
genesis_sidebar
. 使用它可以将其放在侧栏中。我在使用
genesis_entry_header
把它放在了柱子的顶端。我把它放在一个侧面。php,我创建它作为自定义post类型的模板,但您也可以添加它的函数。php。小心你需要更换的东西
is_singular(\'profile\')
如果您不使用自定义帖子类型。即使是,也要更换
profile
使用自定义帖子类型的名称。
作为奖励,它周围有一个用于造型的div。