Plugin Directory

Changeset 1555631


Ignore:
Timestamp:
12/15/2016 06:32:28 PM (9 years ago)
Author:
djerba
Message:

1.7

  • WP 4.7 compatibility
Location:
facebook-ogg-meta-tags
Files:
20 added
4 edited

Legend:

Unmodified
Added
Removed
  • facebook-ogg-meta-tags/trunk/index.php

    r1478910 r1555631  
    44    Description: Share the right title, description, image for all new posts.
    55    Plugin URI: https://wordpress.org/plugins/facebook-ogg-meta-tags/
    6     Version: 1.6
     6    Version: 1.7
    77    Author: Bassem Rabia
    88    Author URI: mailto:bassem.rabia@gmail.com
     
    1111
    1212    require_once(dirname(__FILE__).'/metaTags/metaTags.php');
    13     $metaTags = new metaTags();
     13    $metaTags = new metaTags('1.7');
    1414?>
  • facebook-ogg-meta-tags/trunk/metaTags/metaTags.php

    r1478910 r1555631  
    77/**************************************************************/
    88class metaTags{
    9     public function __construct(){
     9    public function __construct($ver){
    1010        $this->Signature = array(
    1111            'pluginName' => 'Social Meta Tags',
    1212            'pluginNiceName' => 'Social Meta Tags',
    1313            'pluginSlug' => 'social-meta-tags',
    14             'pluginVersion' => '1.6'
     14            'pluginVersion' => $ver
    1515        );
     16        // echo '<pre>'; print_r($this->Signature);echo '<pre>';
    1617        add_action('admin_enqueue_scripts', array(&$this, 'admin_enqueue'));
    1718        add_action('admin_menu', array(&$this, 'menu'));
  • facebook-ogg-meta-tags/trunk/readme.txt

    r1478910 r1555631  
    44Tags: wordpress, tags, facebook tags, facebook meta tags, twitter meta tags, twitter meta tags, social meta tags
    55Requires at least: 3.4.0
    6 Tested up to: 4.6
    7 Stable tag: 1.6
     6Tested up to: 4.7
     7Stable tag: 1.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2929== Upgrade Notice ==
    3030
     31= 1.7 =
    3132= 1.6 =
    3233= 1.5 =
     
    3940
    4041== Changelog ==
     42
     43= 1.7 =
     44* WP 4.7 compatibility
    4145
    4246= 1.6 =
Note: See TracChangeset for help on using the changeset viewer.