动态Facebook og Wordpress中的Meta标签

我正在尝试为我的Wordpress网站添加动态的Facebook og元标签。 我将它们添加到single.php而不是通常推荐的functions.php文件中,因为我的代码低于我创建的Facebook应用程序,需要在每次有人查看单个博客帖子时执行,因为它会发布到他们的Facebook时间表,他们已经阅读了特定的帖子。 我不想使用一个插件,因为我的一些插件曾经互相冲突,并且弄得一团糟。 我最大的问题是我需要og:url标记是动态的,但og:titleog:descriptionog:image等也应该是这样。 以下是我在single.php文件顶部的代码:

编辑:这里是我现在使用的工作代码。 感谢所有人的帮助:

    <?php

$params = array();
if(count($_GET) > 0) {
    $params = $_GET;
} else {
    $params = $_POST;
}
// defaults
if($params['type'] == "") $params['type'] = "picture";
if($params['locale'] == "") $params['locale'] = "en_US";
if($params['description'] == "") $params['description'] = "Visit Internet LOLs for the funniest humor on the web! :)";
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# internetlolsapp: http://ogp.me/ns/fb/internetlolsapp#">
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

        <!-- Open Graph meta tags -->
        <meta property="fb:app_id" content="378076268920252" />
        <meta property="og:site_name" content="meta site name"/>
        <meta property="og:url" content="<?php echo 'http://internetlols.com'.$_SERVER['REQUEST_URI']; ?>"/>
        <meta property="og:type" content="internetlolsapp:<?php echo $params['type']; ?>"/>

        <meta property="og:description" content="<?php echo $params['description']; ?>"/>

    </head>
</html>

  <script type="text/javascript">
  function postView()
  {
      FB.api(
        '/me/internetlolsapp:view',
        'post',
        { picture: '<?php echo 'http://internetlols.com'.$_SERVER['REQUEST_URI']; ?>' },
        function(response) {
       if (!response) {
          // FAIL GRACEFULLY alert('Error occurred : No Response');
       } else if (response.error) {
          // FAIL GRACEFULLY alert('Error occurred : ' + response.error);
       } else {
          // SUCCESS alert('View was successful! Action ID: ' + response.id);
       }
        });
  }
  </script>
</head>
<body>
  <div id="fb-root"></div>
  <script>
    window.fbAsyncInit = function() {
      FB.init({
        appId      : '378076268920252', // App ID
        status     : true, // check login status
        cookie     : true, // enable cookies to allow the server to access the session
        xfbml      : true  // parse XFBML
      });
    };

    // Load the SDK Asynchronously
    (function(d){
      var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
      js = d.createElement('script'); js.id = id; js.async = true;
      js.src = "//connect.facebook.net/en_US/all.js";
      d.getElementsByTagName('head')[0].appendChild(js);
    }(document));
  </script>



</body>

<body onload='postView()'>
</html>

我试图按照下面的代码:动态生成Facebook Open Graph元标记,每当我阅读博客文章时,它都会发布到我的Facebook时间线上,但对于标题,当然会发布“默认标题”,当我点击“默认标题“链接在我的Facebook时间轴上,它会将URL发送到single.php的URL,并在URL末尾添加一些无意义的内容

http://MYSITE.com/wp-content/themes/twentyeleven/single.php?fb_action_ids=10151048340001514&fb_action_types=internetlolsapp%3Aview&fb_source=other_multiline

而不是博客帖子的网址。 我想知道它是否与我放在“FB.api”之后的第三行中的URL有关,但是我尝试过的其他内容会阻止应用在我的Facebook时间轴上发布任何内容博客文章。

任何想法如何解决这一问题? 我一直在用这个拉我的头发好几天。 非常感激任何的帮助! 提前致谢。


我调整了来自Facebook Featured Image和Open Graph Meta Tags(http://www.ryanscowles.com)的一个函数,并将其粘贴在functions.php上,它工作正常! (wordpress 3.5.1)

<?php
//function to limit description to 300 characters
function limit($var, $limit) {
    if ( strlen($var) > $limit ) {
        return substr($var, 0, $limit) . '...';
    }
    else {
        return $var;
    }
}

// Set your Open Graph Meta Tags
function fbogmeta_header() {
    if (is_single()) {
        //getting the right post content
        $postsubtitrare = get_post_meta($post->ID, 'id-subtitrare', true);
        $post_subtitrare = get_post($postsubtitrare);
        $content = limit(strip_tags($post_subtitrare-> post_content),297);
        ?>
        <meta property="og:title" content="<?php the_title(); ?>"/>
        <meta property="og:description" content="<?php echo $content; ?>" />
        <meta property="og:url" content="<?php the_permalink(); ?>"/>
        <?php $fb_image = wp_get_attachment_image_src(get_post_thumbnail_id(     get_the_ID() ), 'thumbnail'); ?>
        <?php if ($fb_image) : ?>
        <meta property="og:image" content="<?php echo $fb_image[0]; ?>" />
        <?php endif; ?>
        <meta property="og:type" content="<?php
        if (is_single() || is_page()) { echo "article"; } else { echo "website";}     ?>"
        />
        <meta property="og:site_name" content="<?php bloginfo('name'); ?>"/>
        <?php
        }
        }
add_action('wp_head', 'fbogmeta_header');
?>

使用Wordpress,您无需通过$_GET$_POST传递此信息。 Wordpress使这一切都可用。

我可以理解你不想使用插件的愿望,但其中一些喜欢Wordpress SEO或官方Facebook可以为你添加这个插件,让你的生活变得更加轻松。 如果没有,找到一个简单的,并拆开看看他们在做什么。

如果你真的想要自己推出,你应该使用模板标签设置标题。 您可以通过the_title()函数检索帖子标题。 还有其他用于您正在查找的其他元数据点。

最后说明:您的og:image文件至少需要50px,否则Facebook将不会显示它。 像你试图使用的Favicon几乎总是太小。 请参阅此页以获取完整图像规格。


对于它的价值,我使用Ryan S. Cowles的一个函数来完成这个任务,并且它完美地工作。 它使用wp_head钩子动态插入数据,使每个页面动态加载OG元数据。 只要您在FB状态框中使用了其中一个页面链接,就会调用与该页面相关的信息。 我在我的所有网页上都使用精选图片,但如果您不喜欢,您可以轻松使用默认回退功能进行书写。

这是在我的函数文件中:

/*
Plugin Name: Facebook Featured Image and Open Graph Meta Tags
Version: 1.0
Plugin URI: http://www.ryanscowles.com
Description: Automatically set the posts' Featured Image as the thumbnail and set appropriate Open Graph meta tags for sharing on Facebook.
Author: Ryan S. Cowles
Author URI: http://www.ryanscowles.com
*/

define ('pluginDirName', 'fb-featured-image');
// Allow for Facebooks's markup language
add_filter('language_attributes', 'add_og_xml_ns');
function add_og_xml_ns($content) {
  return ' xmlns:og="http://ogp.me/ns#" ' . $content;
}

add_filter('language_attributes', 'add_fb_xml_ns');
function add_fb_xml_ns($content) {
  return ' xmlns:fb="https://www.facebook.com/2008/fbml" ' . $content;
}    

// Set your Open Graph Meta Tags
function fbogmeta_header() {
  if (is_single()) {
    ?>
        <meta property="og:title" content="<?php the_title(); ?>"/>
        <meta property="og:description" content="<?php echo strip_tags(get_the_content($post->ID)); ?>" />
        <meta property="og:url" content="<?php the_permalink(); ?>"/>
        <?php $fb_image = wp_get_attachment_image_src(get_post_thumbnail_id( get_the_ID() ), 'thumbnail'); ?>
        <?php if ($fb_image) : ?>
            <meta property="og:image" content="<?php echo $fb_image[0]; ?>" />
            <?php endif; ?>
        <meta property="og:type" content="<?php
            if (is_single() || is_page()) { echo "article"; } else { echo "website";} ?>"
        />
        <meta property="og:site_name" content="<?php bloginfo('name'); ?>"/>

<?php
  }
}
add_action('wp_head', 'fbogmeta_header');
链接地址: http://www.djcxy.com/p/60589.html

上一篇: Dynamic Facebook og Meta Tags in Wordpress PHP

下一篇: How do I set the monitor orientation in Windows 7?