blocked ( Robots meta tags ) - tags

I have got a message for my wordpress website- blocked ( Robots meta tags ) and because of this my articles are not visible on search engines.
I don't know how to resolve it or unblock it. I am attaching a screenshot of the message. Please help me in this.

Related

How can i do specialize meta tags for (tags pages) in blogger?

I really need to help!
I'v a blogger tech blog, and i customized robots.txt file to don't crawl into the tags of my posts to noindex it.
I want to index some tag pages of my blog, and i want specify a special meta tags (description and h1 title and keywords) for these tags pages because they have a default meta tags of the blog.
May any one help me and describe to me how can i do special meta tags for some tags pages in blogger?
I will be appreciative 🙏🏻
You can do this by using the conditional tag I gave below in the head section.
<b:if cond='data:blog.searchLabel == "YOUR-LABEL"'>
//You can add any meta tags here
</b:if>
To remove the default description tag in tag pages you can do this
search for this in your theme = data:view.description
and change it to;
<b:if cond='!data:view.isLabelSearch'>
<meta expr:content='data:view.description' name='description'/></b:if>
If there is any place where you hang out, you can ask again.
Edit the robots.txt content like this, it will definitely work, this way I've done it before;
User-agent: *
Disallow: /search
Allow: /search/label/mobiles
Also, it may not be in the live test right away, when I tried it, google had updated robot.txt 1 day later.
Set robots.txt like this and wait a bit (max 1 day) it will definitely work.
If it doesn't work, there is a second method, open a new question for it and I will answer it for you.
you should not ask different questions in one title

Remove sitemaps URL from Google results

My webpage with Sitemaps http://foo.com/oddname.php appears within the results of Google if I search "oddname site:foo.com".
How could I remove it from appearing in the results without using 'robots.txt'? I do not want anybody to know which my sitemaps URL is.
Thank you.
Try to add the noindex metatag.
Block search indexing with 'noindex'
You can prevent a page from appearing in Google Search by including a noindex meta tag in the page's HTML code, or by returning a 'noindex' header in the HTTP request. When Googlebot next crawls that page and see the tag or header, Googlebot will drop that page entirely from Google Search results, regardless of whether other sites link to it.
See https://support.google.com/webmasters/answer/93710

How come when I block a directory in robots.txt, its contents are still coming up?

This is what I've got in my robots.txt, placed in the base directory, of course:
User-Agent: *
Disallow: /foo/
But then, in Google, I have no index of /foo/, but for some reason, I still have /foo/foo.php showing up as a link in Google.
How come? Did I write something incorrectly? Do I need to write something else?
When you put robots.txt after your site went live, Google could already index files under /foo/.
You can remove already indexed files via Google Webmaster Tools - removal request.
robots.txt does not prevent Google to link to your blocked pages. Google won't index your blocked pages (so it won't show the page title/description/snippet), but if it finds a link to any blocked page, it might still link it from their search results.
If you want to also forbid this linking, you could use the meta element with robots and noindex.

Facebook reporting "og:type=website" but scraped reports "og:type=article"!

I have a news.read application already accepted by Facebook, but with some Wordpress update it stopped working, because Facebook assumes that "og:type" of my articles are set to "website" and therefore nothing works.
The problem is that the source I can check through my browser has a proper "og:type" and even when clicking "See exactly what our scraper sees for your URL" it reports the proper og:type!
Is this some kind of bug or am I missing something?
Here's an example URL: http://www.jornalinsolito.com/um-ato-sexual-que-dura-ha-47-milhoes-de-anos/
Any help is useful!
You have tags ouside of your . This is either because your was malformed and they fell lower in the parse tree, or you accidentally put your Open Graph tags in the wrong place. Either way you need to fix it before the tags are usable.
checkout here

Open Graph Meta Tags in Body?

I am trying to add open graph meta tags to our video pages on our website, but for some reason they are not being picked up by Facebook. I believe I'm doing everything as is posted on the developer pages.
Here is an example link:
http://www.atlantafalcons.com/falconstv/?video_id=1750246128001
The linter returns the following error:
Meta Tags In Body: You have tags ouside of your . This is either because your was malformed and they fell lower in the parse tree, or you accidentally put your Open Graph tags in the wrong place. Either way you need to fix it before the tags are usable.
http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.atlantafalcons.com%2Ffalconstv%2F%3Fvideo_id%3D1750246128001
Thanks in advance!
Your <!DOCTYPE> declaration has a closing slash /> on it when it is not supposed to. This, and other misplaced characters, can cause erroneous behavior on different levels and tools. The 'Meta Tags in Body' message is more than likely caused by that.