如何使用后端替换现有的元标记,以确保在社交媒体上共享时获取缩略图?
function theme_a_header_metadata() {
global $post;
$image = \\wpplugin\\blogwidget\\getBlogImage($post);
?>
<meta property="og:image" content="<?= getLocalImage($image, \'1344x\') ?>" />
<?php
}
add_action( \'wp_head\', \'theme_a_header_metadata\' );
所以我有这个函数,但问题是已经有了一个属性值为“的元属性”;og:图像“;,那么如何替换元标记呢?我需要使用后端,我不想安装任何插件。