Você percebe que quando visita o WPBeginner, na barra de URL, há um ícone de RSS. Geralmente, você verá esse ícone em sites que configuraram seus RSS Feeds para descoberta automática. Ao definir a descoberta automática, você está incentivando seus usuários a se inscreverem e também está informando aqueles que não sabem que também devem se inscrever. A maioria dos temas ignora esse recurso, que pode ser o recurso mais importante que você deve ter em seus temas. Neste tutorial, mostraremos como você pode configurar a descoberta automática para seus RSS Feeds do WordPress.
Abra seu header.php e cole os seguintes códigos acima do código </head>.
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo(‘rss2_url’); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo(‘rss_url’); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo(‘atom_url’); ?>" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’); ?> RSS Comments Feed" href="<?php bloginfo(‘comments_rss2_url’); ?>" />
Muitos sites confiáveis do setor adotaram essa medida para garantir que seus leitores se inscrevam em seus sites. Você deve verificar se esses códigos estão em seu arquivo de cabeçalho; caso contrário, deve adicioná-los. Não se esqueça de que, se quiser rastrear seus assinantes de RSS, você deve redirecionar seus feeds para o FeedBurner.
mohadese esmaeeli
Hello! Is having an RSS feed field for site SEO dangerous? There are various theories on this matter, and I appreciate it if you share your professional opinion. Also, under what conditions should one use RSS?
WPBeginner Support
No, having an RSS feed is not dangerous it can even help search engines crawl your content. Most sites should normally have an RSS feed.
Administrador
Kyle Alm
I just implemented this on my blog, is this one of the reasons why CommentLuv doesn’t pickup my “Recent Blog Posts?”
Editorial Staff
I don’t think that CommentLuv has anything to do with this technique.
Administrador
Belinda
I don’t think you mean below the /head code… I think you mean above it? As in, still within the head tags?? Let me know if I am misunderstanding something.
Editorial Staff
Yes you are correct. It needs to be within the head tags.
Administrador
kf
Would you mind correcting the entry? It’s only been about 3 years now.
I’ve blown 45 minutes trying to corroborate the above or below /head tag and just for giggles, scrolled down to read comments. No offense, but failing to correct the entry doesn’t give your site credibility. I have a technical site too but I don’t force my visitors to do any more work than they have to. The easier I make it, the more likely they are to give me money. Just sayin…
Editorial Staff
Fixed it.
Brian Cray
Never underestimate the small stuff! Nice reminder