Plugin Directory

Changeset 796013

Timestamp:
10/30/2013 03:04:50 PM (11 years ago)
Author:
jshreve
Message:

Only use the permalink mshot on single pages, otherwise use the site URL.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • jetpack/trunk/functions.opengraph.php

    r795516 r796013  
    170170    // Fallback to Mshot
    171171    if ( empty( $image ) ) {
    172         $image = 'http://s.wordpress.com/mshots/v1/' . urlencode( get_permalink( $post->ID ) );
     172        if ( is_singular() )
     173            $image = 'http://s.wordpress.com/mshots/v1/' . urlencode( get_permalink( $post->ID ) );
     174        else
     175            $image = 'http://s.wordpress.com/mshots/v1/' . urlencode( site_url() );
    173176    }
    174177
Note: See TracChangeset for help on using the changeset viewer.