Changeset 202756 in webkit


Ignore:
Timestamp:
Jul 1, 2016 1:58:12 PM (8 years ago)
Author:
Jon Davis
Message:

Added a colorful new image and fixed the Open Graph attribute.
https://bugs.webkit.org/show_bug.cgi?id=159359

Reviewed by Timothy Hatcher.

The Open Graph image tag should use the property attribute not
the itemprop attribute.

  • wp-content/plugins/social-meta.php:
  • wp-content/themes/webkit/images/ogimage.png:
Location:
trunk/Websites/webkit.org
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Websites/webkit.org/ChangeLog

    r202709 r202756  
     12016-07-01  Jon Davis  <jond@apple.com>
     2
     3        Added a colorful new image and fixed the Open Graph attribute.
     4        https://bugs.webkit.org/show_bug.cgi?id=159359
     5
     6        Reviewed by Timothy Hatcher.
     7       
     8        The Open Graph image tag should use the property attribute not
     9        the itemprop attribute.
     10
     11        * wp-content/plugins/social-meta.php:
     12        * wp-content/themes/webkit/images/ogimage.png:
     13
    1142016-06-30  Dean Jackson  <dino@apple.com>
    215
  • trunk/Websites/webkit.org/wp-content/plugins/social-meta.php

    r202577 r202756  
    8383    <meta property="og:url" content="<?php the_permalink(); ?>">
    8484<?php if ($image_url): ?>
    85     <meta itemprop="og:image" content="<?php echo esc_url($image_url); ?>">
     85    <meta property="og:image" content="<?php echo esc_url($image_url); ?>">
    8686<?php endif; ?>
    8787<?php if ($description): ?>
Note: See TracChangeset for help on using the changeset viewer.