出于 SEO 目的,将 twig/timber 中的 RAW ACF 值放入页眉

Out putting RAW ACF values in twig/timber unto page header for SEO purposes

所以,从 ACF 我已经在我的自定义 WP 主题中创建了我自己的 SEO 字段,所以我不必依赖插件,而且我希望已经填写了默认值,所以我们不除非有特定的事情,否则我不会一直这样做——我如何将它们放到我的页面上并同时将它们插入到页眉中?我试过 {{post.meta_description|raw}}{{ function('wp_head') }} timber 但它只是打印在页面上,我错过了什么?

Another great {{ post.tool_brand }} {{ post.tool.type}} 
for sale, {{ post.power_type }} of power with a 
competitive price {{ post. tool_price }}!

{% extends "base.twig" %}

{% block content %}
    <div class="container my-4">
        <head>
            {{post.meta_description|raw}}
            {{ function('wp_head') }}
        </head>
    </div>

{% endblock %}

这似乎完全符合我的要求:{{ include(template_from_string(post.meta_description)) }}

即:<meta name="description" content="{{ include(template_from_string(post.meta_description)) }}">