Plugin Directory

Changeset 733718


Ignore:
Timestamp:
06/28/2013 07:13:03 PM (13 years ago)
Author:
yathosho
Message:

v0.8.16

Location:
meta-ographr
Files:
16 added
2 edited

Legend:

Unmodified
Added
Removed
  • meta-ographr/trunk/meta-ographr_index.php

    r728511 r733718  
    44Plugin URI: http://ographr.whyeye.org
    55Description: This plugin scans posts for embedded video and music players and adds their thumbnails URL as an OpenGraph meta-tag. While at it, the plugin also adds OpenGraph tags for the title, description (excerpt) and permalink. Facebook and other social networks can use these to style shared or "liked" articles.
    6 Version: 0.8.15
     6Version: 0.8.16
    77Author: Jan T. Sott
    88Author URI: http://whyeye.org
     
    2929
    3030// OGRAPHR OPTIONS
    31     define("OGRAPHR_VERSION", "0.8.15");
     31    define("OGRAPHR_VERSION", "0.8.16");
    3232    // enables developer settings on Wordpress interface, can be overwritten from plug-in settings once activated
    3333    define("OGRAPHR_DEVMODE", FALSE);
     
    845845                // Add permalink
    846846                if (($options['add_permalink']) && (is_front_page()) && ($link = get_option('home'))) {
     847                    if (substr($link, -1) !== '/') $link = $link . '/';
    847848                    $opengraph_meta['og:url'] = $link;
    848849                    if (isset($options['add_twitter_meta']))
     
    855856                            $link = get_permalink();
    856857                        }
     858                        if (substr($link, -1) !== '/') $link = $link . '/';
    857859                        $opengraph_meta['og:url'] = $link;
    858860                        if (isset($options['add_twitter_meta']))
  • meta-ographr/trunk/readme.txt

    r728511 r733718  
    44Tags: opengraph,open-graph,open graph,open graph meta,metatags,facebook,google+,google snippets,twitter cards,thumbnails,soundcloud,mixcloud,bandcamp,vimeo,youtube,dailymotion,blip.tv,hulu,internet archive,archive.org,myvideo,official.fm,ustream,viddler,html5,livestream video,jwplayer,nvbplayer,flickr,justin.tv,twitch.tv,8tracks,bambuser,rdio,socialcam
    55Requires at least: 3.0
    6 Tested up to: 3.5.1
    7 Stable tag: 0.8.15
     6Tested up to: 3.5.2
     7Stable tag: 0.8.16
    88License: GPLv2
    99
     
    104104== Changelog ==
    105105
     106= 0.8.16 =
     107* adds trailing slash to urls if missing
     108
    106109= 0.8.15 =
    107110* added support for new Bandcamp players
Note: See TracChangeset for help on using the changeset viewer.