First problem:
You have this in your code:
<meta name='robots' content='noindex,follow' />
So you’re telling all robots to NOT index your content… that’ll mess w/ FB.
Second problem:
Your admin ID and app ID are messed up. I see this in your code:
<meta property="fb:admins" content="100000195032462"100000195032462"/>
<meta property="fb:app_id" content="1801701280113135"1801701280113135"/>
I’m assuming you tried to list those twice?? or have quotes in that input in the plugin settings? (something I should filter in a future version). BUT… clean that up… also you only need one of those… either the adminID OR the appID. not both.
Third Problem:
You have another set of OpenGraph tags being output… if those are from your theme or another plugin i’m not sure but you need to figure that out and remove those.
Do all that… THEN… run your site through Facebook’s Debugger and see how you’re doing. https://developers.facebook.com/tools/debug/echo/?q=http%3A%2F%2Fbaudorock.net%2F
Thread Starter
wlmweb
(@wlmweb)
Hello!
Thanks for answering! I changed all the problems mentioned, but the code <meta name = ‘robots’ content = ‘noindex, follow’ /> is contained in the general-template.php file of the wp-includes folder that according to my hosting, can not be changed! Is there another way to change this setting?
In advance, thank you very much!
well if you want anything to index and see your site, including Google, Bing, Facebook, etc, you’re going to need to fix that noindex thing. If you don’t fix that, no plugin you ever use will help you. Talk to your theme developer, or web dev, or learn to edit that specific file with the wordpress editor or via sftp or something.
Thread Starter
wlmweb
(@wlmweb)
Hello
Thanks for answering! What would be the ideal setting for meta tag robots?
More likely than not you just want them to index the site so change it to this:
<meta name='robots' content='index,follow' />
(index,follow instead of noindex,follow)
You can read more about robots metadata here: http://www.robotstxt.org/meta.html