Meta Author does not incorporate into website

9

Whenever I share a post from my site on my Facebook page, the author's name appears on the news side. But this week, it stopped appearing. I was researching and saw that it is problem with meta author . I had already asked a question pertaining to this same problem before here . I followed the steps that were informed in this post, but it did not solve. Does anyone know what might have happened?

News link: link

Include the Facebook code in the Header:

    window.fbAsyncInit = function() {
    FB.init({
      appId      : 'ID',
      xfbml      : true,
      version    : 'v2.10'
    });
    FB.AppEvents.logPageView();
  };

  (function(d, s, id){
     var js, fjs = d.getElementsByTagName(s)[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement(s); js.id = id;
     js.src = "//connect.facebook.net/en_US/sdk.js";
     fjs.parentNode.insertBefore(js, fjs);
   }(document, 'script', 'facebook-jssdk'));

    
asked by anonymous 22.10.2017 / 02:52

4 answers

2

Facebook stopped showing Meta Author, only sites that have been cached are showing. Apparently they are reshaping the way the shares are appearing (this change has been implemented since the beginning of this year Link Notice about part of the change ), see in their API the share sharing debugger your SITE, the Meta Author is recognized, is displayed, but is no longer placed on the share:

Link API Dubugger Share

This is not only happening with your site, let's wait for an official positioning on sharing mode changes to get more information.

    
17.11.2017 / 14:02
1

I found the documentation, have you tried?

Enable Facebook Author Tags

For the Facebook author branding feature to work, you need to enter the user profile page of your WordPress installation and enter your own Facebook profile URL. That's it. The plugin will automatically add more things such as editor tags, image tags, a description tag, article type etc. etc.

If you want to further optimize your OpenGraph output, you can change some of the things that the plugin displays on the WordPress SEO Social tab.

  

link

    
26.10.2017 / 15:19
1

Use in my app, the same address for the publisher and author, where yours would be link , and your publisher has one more slash.

 <meta property="article:publisher" content="https://www.facebook.com/strangerthings.com.br/" />
    <meta property="article:author" content="http://www.facebook.com/felipestoker" />
    
31.10.2017 / 13:01
0

It seems that authors need to give permission for a publication or website (and specifically the FB page of that site) to be cited as the author.

Authors must log in to their own Facebook profile, go to Settings, and then click "Linked Publications" (or access link )

There, they need to add the Facebook page of the publication (or website) as a "linked publication."

Once the author gives the permission, you'll want to clear the Facebook cache using the Sharing Debugger , just put the link of the post and click on "Scrape Again".

In this answer it was also suggested to use FB_ID instead of alias in meta tags

    
07.11.2017 / 19:19