嗨,我很难让我的og元标记动态变化(撞在墙上)。我想根据输入字段动态更改og:description。
到目前为止,我能够做到这一点:
$ og_description = $ _POST ['question'];
$ custom_input = array(“value”=> $ og_description);
<meta property="fb:app_id" content="xxxxxxxxxxxxxx" />
<meta property="og:site_name" content="Site name etc.. " />
<meta property="og:description" content=" <?php echo "this is {$custom_input['value']} !"; ?>" />
它在元标记之外工作得很好,但出于某种原因,我最终还是回应了文本“这是”。
非常感谢任何帮助:)