我正在使用 WordPress 工具创建一个网站。这是链接:http ://ati.ismt.pt/wordpress/
在上一次 WordPress 更新之前,我可以使用此功能,但现在,通过 facebook 分享帖子会从帖子中获取默认设置信息,而不是我希望它分享的信息。我什至无法获取图像。
我正在使用一个名为 ShareThis 的插件,这是我的 head.php 代码:
?><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml">
<head prefix="og: http://ogp.me/ns# object: http://ogp.me/ns/object#">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<meta property="og:title" content="<?php the_title(); ?>" />
<meta property="og:type" content="website" />
<meta property="og:url" content="<?php the_permalink(); ?>" />
<meta property="og:site_name" content="<?php bloginfo('name'); ?>" />
<meta property="og:description" content="<?php echo strip_tags(get_the_excerpt($post- >ID)); ?>" />
<meta property="og:image" content="http://ati.ismt.pt/wordpress/wp-content/uploads/2013/05/ismtLogo2.jpg" />
我已经通过这个检查器检查了我的 og 协议标记:http: //ogp.spypixel.com/Pogo/checker/index.php
一切看起来都很好,没有错误。我需要一些帮助,任何形式的帮助都会受到欢迎。
谢谢你的时间!