我有一个wordpress网站使用树枝模板。我试图调用和显示自定义字段。我该怎么做呢?
2q5ifsrm1#
您可以使用post. get_field()轻松地调用wpcf值。例如:
{{post.get_field('wpcf-ticket-url')}}
你也可以创建任何辅助函数来扩展你的小枝库,你可以在小枝主题文件夹下的functions.php文件中分配它们。例如:
$context['get_custom_meta'] = TimberHelper::function_wrapper( 'get_custom_meta', array('',0) );//array contains default values function get_custom_meta($key,$id){ if(empty($id)){ return types_render_field($key, array("raw"=>"true","separator"=>";")); }else{ return get_post_meta( $id, 'wpcf-'.$key, true ); } }
{{ get_custom_meta("ticket-url",item.object_id) }}
1条答案
按热度按时间2q5ifsrm1#
您可以使用post. get_field()轻松地调用wpcf值。
例如:
你也可以创建任何辅助函数来扩展你的小枝库,你可以在小枝主题文件夹下的functions.php文件中分配它们。
例如: