Version Description
Download this release
Release Info
Developer | diegoquinteiro |
Plugin | Instant Articles for WP |
Version | 3.3.5 |
Comparing to | |
See all releases |
Code changes from version 3.3.4 to 3.3.5
- facebook-instant-articles.php +11 -11
- readme.txt +1 -1
facebook-instant-articles.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Description: Add support for Instant Articles for Facebook to your WordPress site.
|
5 |
* Author: Automattic, Dekode, Facebook
|
6 |
* Author URI: https://vip.wordpress.com/plugins/instant-articles/
|
7 |
-
* Version: 3.3.
|
8 |
* Text Domain: instant-articles
|
9 |
* License: GPLv2
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -67,7 +67,7 @@ if ( version_compare( PHP_VERSION, '5.4', '<' ) ) {
|
|
67 |
|
68 |
defined( 'ABSPATH' ) || die( 'Shame on you' );
|
69 |
|
70 |
-
define( 'IA_PLUGIN_VERSION', '3.3.
|
71 |
define( 'IA_PLUGIN_PATH_FULL', __FILE__ );
|
72 |
define( 'IA_PLUGIN_PATH', plugin_basename( __FILE__ ) );
|
73 |
define( 'IA_PLUGIN_FILE_BASENAME', pathinfo( __FILE__, PATHINFO_FILENAME ) );
|
@@ -262,21 +262,21 @@ if ( version_compare( PHP_VERSION, '5.4', '<' ) ) {
|
|
262 |
plugins_url( '/css/instant-articles-meta-box.css', __FILE__ ),
|
263 |
null,
|
264 |
IA_PLUGIN_VERSION,
|
265 |
-
|
266 |
);
|
267 |
wp_register_style(
|
268 |
'instant-articles-settings',
|
269 |
plugins_url( '/css/instant-articles-settings.css', __FILE__ ),
|
270 |
null,
|
271 |
IA_PLUGIN_VERSION,
|
272 |
-
|
273 |
);
|
274 |
wp_register_style(
|
275 |
'instant-articles-wizard',
|
276 |
plugins_url( '/css/instant-articles-wizard.css', __FILE__ ),
|
277 |
null,
|
278 |
IA_PLUGIN_VERSION,
|
279 |
-
|
280 |
);
|
281 |
|
282 |
wp_register_script(
|
@@ -284,42 +284,42 @@ if ( version_compare( PHP_VERSION, '5.4', '<' ) ) {
|
|
284 |
plugins_url( '/js/instant-articles-meta-box.js', __FILE__ ),
|
285 |
null,
|
286 |
IA_PLUGIN_VERSION,
|
287 |
-
|
288 |
);
|
289 |
wp_register_script(
|
290 |
'instant-articles-option-ads',
|
291 |
plugins_url( '/js/instant-articles-option-ads.js', __FILE__ ),
|
292 |
null,
|
293 |
IA_PLUGIN_VERSION,
|
294 |
-
|
295 |
);
|
296 |
wp_register_script(
|
297 |
'instant-articles-option-analytics',
|
298 |
plugins_url( '/js/instant-articles-option-analytics.js', __FILE__ ),
|
299 |
null,
|
300 |
IA_PLUGIN_VERSION,
|
301 |
-
|
302 |
);
|
303 |
wp_register_script(
|
304 |
'instant-articles-option-publishing',
|
305 |
plugins_url( '/js/instant-articles-option-publishing.js', __FILE__ ),
|
306 |
null,
|
307 |
IA_PLUGIN_VERSION,
|
308 |
-
|
309 |
);
|
310 |
wp_register_script(
|
311 |
'instant-articles-settings',
|
312 |
plugins_url( '/js/instant-articles-settings.js', __FILE__ ),
|
313 |
null,
|
314 |
IA_PLUGIN_VERSION,
|
315 |
-
|
316 |
);
|
317 |
wp_register_script(
|
318 |
'instant-articles-wizard',
|
319 |
plugins_url( '/js/instant-articles-wizard.js', __FILE__ ),
|
320 |
null,
|
321 |
IA_PLUGIN_VERSION,
|
322 |
-
|
323 |
);
|
324 |
}
|
325 |
add_action( 'init', 'instant_articles_register_scripts' );
|
4 |
* Description: Add support for Instant Articles for Facebook to your WordPress site.
|
5 |
* Author: Automattic, Dekode, Facebook
|
6 |
* Author URI: https://vip.wordpress.com/plugins/instant-articles/
|
7 |
+
* Version: 3.3.5
|
8 |
* Text Domain: instant-articles
|
9 |
* License: GPLv2
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
67 |
|
68 |
defined( 'ABSPATH' ) || die( 'Shame on you' );
|
69 |
|
70 |
+
define( 'IA_PLUGIN_VERSION', '3.3.5' );
|
71 |
define( 'IA_PLUGIN_PATH_FULL', __FILE__ );
|
72 |
define( 'IA_PLUGIN_PATH', plugin_basename( __FILE__ ) );
|
73 |
define( 'IA_PLUGIN_FILE_BASENAME', pathinfo( __FILE__, PATHINFO_FILENAME ) );
|
262 |
plugins_url( '/css/instant-articles-meta-box.css', __FILE__ ),
|
263 |
null,
|
264 |
IA_PLUGIN_VERSION,
|
265 |
+
false
|
266 |
);
|
267 |
wp_register_style(
|
268 |
'instant-articles-settings',
|
269 |
plugins_url( '/css/instant-articles-settings.css', __FILE__ ),
|
270 |
null,
|
271 |
IA_PLUGIN_VERSION,
|
272 |
+
false
|
273 |
);
|
274 |
wp_register_style(
|
275 |
'instant-articles-wizard',
|
276 |
plugins_url( '/css/instant-articles-wizard.css', __FILE__ ),
|
277 |
null,
|
278 |
IA_PLUGIN_VERSION,
|
279 |
+
false
|
280 |
);
|
281 |
|
282 |
wp_register_script(
|
284 |
plugins_url( '/js/instant-articles-meta-box.js', __FILE__ ),
|
285 |
null,
|
286 |
IA_PLUGIN_VERSION,
|
287 |
+
false
|
288 |
);
|
289 |
wp_register_script(
|
290 |
'instant-articles-option-ads',
|
291 |
plugins_url( '/js/instant-articles-option-ads.js', __FILE__ ),
|
292 |
null,
|
293 |
IA_PLUGIN_VERSION,
|
294 |
+
false
|
295 |
);
|
296 |
wp_register_script(
|
297 |
'instant-articles-option-analytics',
|
298 |
plugins_url( '/js/instant-articles-option-analytics.js', __FILE__ ),
|
299 |
null,
|
300 |
IA_PLUGIN_VERSION,
|
301 |
+
false
|
302 |
);
|
303 |
wp_register_script(
|
304 |
'instant-articles-option-publishing',
|
305 |
plugins_url( '/js/instant-articles-option-publishing.js', __FILE__ ),
|
306 |
null,
|
307 |
IA_PLUGIN_VERSION,
|
308 |
+
false
|
309 |
);
|
310 |
wp_register_script(
|
311 |
'instant-articles-settings',
|
312 |
plugins_url( '/js/instant-articles-settings.js', __FILE__ ),
|
313 |
null,
|
314 |
IA_PLUGIN_VERSION,
|
315 |
+
false
|
316 |
);
|
317 |
wp_register_script(
|
318 |
'instant-articles-wizard',
|
319 |
plugins_url( '/js/instant-articles-wizard.js', __FILE__ ),
|
320 |
null,
|
321 |
IA_PLUGIN_VERSION,
|
322 |
+
false
|
323 |
);
|
324 |
}
|
325 |
add_action( 'init', 'instant_articles_register_scripts' );
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: trrine, olethomas, bjornjohansen, dekode, automattic, facebook
|
|
3 |
Tags: instant articles, facebook, mobile
|
4 |
Requires at least: 4.3
|
5 |
Tested up to: 4.6
|
6 |
-
Stable tag: 3.3.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
3 |
Tags: instant articles, facebook, mobile
|
4 |
Requires at least: 4.3
|
5 |
Tested up to: 4.6
|
6 |
+
Stable tag: 3.3.5
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|