我正在帮助一个朋友并为他修改他的 Wordpress 作品集。我不php
经常使用,所以这可能很简单。
在模板中,我the_field()
像这样调用 Wordpress 方法:
<?php echo the_field('full_text'); ?>
这正在输出full_text
刚刚好的内容,但是full_text
确实包含一个<a>
标签,该标签不是作为链接生成的,而是显示为:
<a href="http://thelink.com">The Link</a>
而不是实际生成链接。
我需要做什么才能使full_text
字段中包含的任何 HTML 显示为 HTML 而不是纯文本?
编辑
在custom_fields.php
我发现:
array (
'key' => 'field_4',
'label' => 'Full Text',
'name' => 'full_text',
'type' => 'textarea',
'order_no' => 2,
'instructions' => 'Write about this item.',
'required' => 0,
'conditional_logic' =>
array (
'status' => 0,
'rules' =>
array (
0 =>
array (
'field' => 'null',
'operator' => '==',
'value' => '',
),
),
'allorany' => 'all',
),
'default_value' => '',
'formatting' => 'br',
),