Adding rel=”next” & rel=”prev” for paginated archives

Does someone perhaps know a plugin or snippet (besides Yoast’s WordPress SEO) to accomplish this perhaps? Pagination with rel=“next” and rel=“prev” The only thing I’ve come across seems to be an 3-month old Trac ticket. 3 s 3 Try putting this snippet in your functions.php <?php function rel_next_prev(){ global $paged; if ( get_previous_posts_link() ) { … Read more

Custom Post Types, slug, archive and SEO plugins

I made a custom post type called “friends”. I am able to correctly list my friends using this urls: http://mysite/friends/friend1/ http://mysite/friends/friend2/ http://mysite/friends/friend3/ But I have a “logic” problem with the “archive page” My problem is: If I use the “has_archive” option of my custom field I am able to see my page but I am … Read more

Robots.txt not updating

When I try to google search my web address, the follow comes up as the meta description “A description for this result is not available because of this site’s robots.txt – learn more.” The website I have tried to edit the robots.txt (downloaded the WP Robot plugin) and although I have changed it to User-agent: … Read more

How do search engines deal with AngularJS applications?

I see two issues with AngularJS application regarding search engines and SEO: 1) What happens with custom tags? Do search engines ignore the whole content within those tags? i.e. suppose I have <custom> <h1>Hey, this title is important</h1> </custom> would <h1> be indexed despite being inside custom tags? 2) Is there a way to avoid … Read more