Changeset 1555631
- Timestamp:
- 12/15/2016 06:32:28 PM (9 years ago)
- Location:
- facebook-ogg-meta-tags
- Files:
-
- 20 added
- 4 edited
-
tags/1.6 (added)
-
tags/1.6/index.php (added)
-
tags/1.6/metaTags (added)
-
tags/1.6/metaTags/css (added)
-
tags/1.6/metaTags/css/social-meta-tags-admin.css (added)
-
tags/1.6/metaTags/css/social-meta-tags-front.css (added)
-
tags/1.6/metaTags/images (added)
-
tags/1.6/metaTags/images/32.png (added)
-
tags/1.6/metaTags/images/512.png (added)
-
tags/1.6/metaTags/images/facebook.png (added)
-
tags/1.6/metaTags/images/google.png (added)
-
tags/1.6/metaTags/images/linkedin.png (added)
-
tags/1.6/metaTags/images/twitter.png (added)
-
tags/1.6/metaTags/js (added)
-
tags/1.6/metaTags/js/social-meta-tags-admin.js (added)
-
tags/1.6/metaTags/js/social-meta-tags-front.js (added)
-
tags/1.6/metaTags/metaTags.php (added)
-
tags/1.6/readme.txt (added)
-
tags/1.6/screenshot-1.png (added)
-
tags/1.6/screenshot-2.png (added)
-
trunk/index.php (modified) (2 diffs)
-
trunk/metaTags/images/512.png (modified) (previous)
-
trunk/metaTags/metaTags.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
facebook-ogg-meta-tags/trunk/index.php
r1478910 r1555631 4 4 Description: Share the right title, description, image for all new posts. 5 5 Plugin URI: https://wordpress.org/plugins/facebook-ogg-meta-tags/ 6 Version: 1. 66 Version: 1.7 7 7 Author: Bassem Rabia 8 8 Author URI: mailto:bassem.rabia@gmail.com … … 11 11 12 12 require_once(dirname(__FILE__).'/metaTags/metaTags.php'); 13 $metaTags = new metaTags( );13 $metaTags = new metaTags('1.7'); 14 14 ?> -
facebook-ogg-meta-tags/trunk/metaTags/metaTags.php
r1478910 r1555631 7 7 /**************************************************************/ 8 8 class metaTags{ 9 public function __construct( ){9 public function __construct($ver){ 10 10 $this->Signature = array( 11 11 'pluginName' => 'Social Meta Tags', 12 12 'pluginNiceName' => 'Social Meta Tags', 13 13 'pluginSlug' => 'social-meta-tags', 14 'pluginVersion' => '1.6'14 'pluginVersion' => $ver 15 15 ); 16 // echo '<pre>'; print_r($this->Signature);echo '<pre>'; 16 17 add_action('admin_enqueue_scripts', array(&$this, 'admin_enqueue')); 17 18 add_action('admin_menu', array(&$this, 'menu')); -
facebook-ogg-meta-tags/trunk/readme.txt
r1478910 r1555631 4 4 Tags: wordpress, tags, facebook tags, facebook meta tags, twitter meta tags, twitter meta tags, social meta tags 5 5 Requires at least: 3.4.0 6 Tested up to: 4. 67 Stable tag: 1. 66 Tested up to: 4.7 7 Stable tag: 1.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 == Upgrade Notice == 30 30 31 = 1.7 = 31 32 = 1.6 = 32 33 = 1.5 = … … 39 40 40 41 == Changelog == 42 43 = 1.7 = 44 * WP 4.7 compatibility 41 45 42 46 = 1.6 =
Note: See TracChangeset
for help on using the changeset viewer.