在WordPress SSL站点中更改og:url以指向http

时间:2016-12-24 13:40:55

标签: wordpress facebook ssl

我最近搬到了SSL,但失去了所有的FB喜欢。我在这里看到了其他答案,即。 Lost all Likes while moving to HTTPS但不知道如何应用它。例如,在Simple Facebook Plugin中,我可以看到代码:

$fbmeta['og:url'] = esc_url($permalink);

如何更改它以使其获得http版本?

1 个答案:

答案 0 :(得分:0)

案例1:借助插件加载混合内容

真正简单的SSL插件有“强制更改混合内容”,这意味着它一直强制网站上的每个链接都为http ...

一些有用的功能

  • 混合内容扫描,显示如果您还没有绿色锁定,您需要做什么

  • 启用HTTP严格传输安全性的选项

  • 为HSTS预加载列表配置站点的选项

  • 后端混合内容修复程序

  • 有关配置页面的更详细反馈。

<强> https://wordpress.org/plugins/really-simple-ssl/

案例2:手动将Facebook Open Graph元数据添加到WordPress主题中

//Adding the Open Graph in the Language Attributes
function add_opengraph_doctype( $output ) {
        return $output . ' xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"';
    }
add_filter('language_attributes', 'add_opengraph_doctype');

//Lets add Open Graph Meta Info

function insert_fb_in_head() {
    global $post;
    if ( !is_singular()) //if it is not a post or a page
        return;
        echo '<meta property="fb:admins" content="YOUR USER ID"/>';
        echo '<meta property="og:title" content="' . get_the_title() . '"/>';
        echo '<meta property="og:type" content="article"/>';
        echo '<meta property="og:url" content="' . get_permalink() . '"/>';
        echo '<meta property="og:site_name" content="Your Site NAME Goes HERE"/>';
    if(!has_post_thumbnail( $post->ID )) { //the post does not have featured image, use a default image
        $default_image="http://example.com/image.jpg"; //replace this with a default image on your server or an image in your media library
        echo '<meta property="og:image" content="' . $default_image . '"/>';
    }
    else{
        $thumbnail_src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'medium' );
        echo '<meta property="og:image" content="' . esc_attr( $thumbnail_src[0] ) . '"/>';
    }
    echo "
";
}
add_action( 'wp_head', 'insert_fb_in_head', 5 );

其他解决方案

首先你需要更改网址请查看FB指南

https://developers.facebook.com/docs/plugins/faqs#faq_1149655968420144

您需要指示facebook抓取工具重新抓取您的网址,以使更改生效:

https://developers.facebook.com/tools/debug/sharing