Mobile app version of vmapp.org
Login or Join
Karen161

: Web pages with mixed ownership photos I have a photo website. 15% of the photos belong to approved registered users. They agree my terms about uploading their images in my web pages. I include

@Karen161

Posted in: #Google #Images #Ownership

I have a photo website. 15% of the photos belong to approved registered users. They agree my terms about uploading their images in my web pages. I include a photographer credit on right bottom corner.

About identifying the site with google, every page contains a google+ button to MY google+ page it also contains

<link href="https://plus.google.com/nnnnnnnnnn/" rel="publisher" />


I need some advice in order to respect google rules about my pages containing
other photographers images not to be penalized because of possible duplicated or interpreted as stolen content. My concern is also about adding G+ links (to MY photo page) and Google publisher id would harm my site rank because of pages containing third-party photos.

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Karen161

3 Comments

Sorted by latest first Latest Oldest Best

 

@Ogunnowo487

publisher is not the same as author.

You are the publisher of the web pages, so it’s fine to link to the website’s Google+ page with the publisher link type, even on pages containing content from other users.

The author link type


[…] indicates that the referenced document provides further information about the author of the nearest article element ancestor of the element defining the hyperlink, if there is one, or of the page as a whole, otherwise.


So every image should be enclosed in an article element, and inside of that article you should have a link with the author link type, linking to a page about that image’s author (which could be a Google+ profile).

<!DOCTYPE html>
<html>
<head>
<!-- … -->
<link rel="publisher" href="" /> <!-- link to your Google+ page -->
</head>
<body>

<!-- … -->

<article>
<!-- … -->
<div>by <a rel="author" href="">John Doe</a></div> <!-- link to a page about John Doe -->
<!-- … -->
</article>

<!-- … -->

</body>
</html>


If you wouldn’t use article, the author link type would convey that the linked person is the author of the whole page, which is probably not the case.

10% popularity Vote Up Vote Down


 

@Si4351233

There are many search results which include authorship to articles that have others photos within the article, blog post or web page. As long as you're crediting the photographer I think it's ok.

Since you can verify your entire domain from within your header to your Google Plus account it must be assumed that some sites will have 3rd party content. Just give credit to the authors when possible of the content and images.

10% popularity Vote Up Vote Down


 

@Sue5673885

You could put user photos inside/under a special path and disallow it from robots.txt. Example

User-agent: *
Disallow: /img/users/

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme