我只是想在FB
的共享框对话框中添加作者姓名
我添加了以下meta和og属性:
<meta name="author" content="foutight.com">
<meta property="og:type" content="article"/>
<meta property="og:article:author" content="foutight.com"/>
但没有成功。有什么建议。感谢。
答案 0 :(得分:3)
来自<meta name='author' content='...'/>
部分。看起来它出现在http://foutight.com/posts/photo/242上 - 也许你刚刚有一个缓存页面?
通过oglint.com运行,然后尝试重新抓取它。
答案 1 :(得分:0)
请尝试使用“og”。
<meta property="og:type" content="article"/>
<meta property="article:author" content="foutight.com"/>
答案 2 :(得分:0)
<meta name="author" content="foutight.com">
<meta property="article:author" content="https://www.facebook.com/author_profile" />
文章:作者可能包含一系列Facebook个人资料网址或本文作者的ID。
https://developers.facebook.com/docs/reference/opengraph/object-type/article/
答案 3 :(得分:-2)
打开function.php并添加代码:
function author_chauit() {
if ( is_singular('post') ) {
echo '<meta name="author" content="'.get_the_author().'">';
} else {
echo '<meta name="author" content="'.get_bloginfo( 'name' ).'">';
}
}
add_action( 'wp_head', 'author_chauit' );
注意:添加结束功能代码