1
當我在電報中分享wordpress帖子時遇到一些問題。元標記不以真實的方式顯示。但在頁面瀏覽源中它會得到真實的數據。我不知道有什麼問題。我在header.php文件中編寫了下面的代碼。當在電報上分享鏈接時出現錯誤的OG元標記
<?php global $post; ?>
<meta property="og:title" content="<?php
if(is_front_page()){
echo get_bloginfo();
}
else
echo the_title();
?>"/>
<meta property="og:description" content="<?php echo "eda website" ; ?>"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="<?php
if(is_front_page())
echo "http://eda-af.com";
else
echo the_permalink();
?>"/>
<meta property="og:site_name" content="<?php echo get_bloginfo(); ?>"/>
<meta property="og:image" content="<?php
if(is_front_page())
echo "http://eda-af.com/wp-content/themes/mytheme/img/meta_logo.jpg";
else
$img_src = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'medium');
echo $img_src[0];
?>"/>