Changeset 1521377
- Timestamp:
- 10/24/2016 08:07:04 PM (9 years ago)
- Location:
- pixabay-images-gallery/trunk
- Files:
-
- 3 edited
-
pixabay-images-gallery.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pixabay-images-gallery/trunk/pixabay-images-gallery.php
r1521259 r1521377 5 5 Plugin URI: https://goodies.pixabay.com/javascript/pixabay-widget/demo.html 6 6 Description: Use shortcodes to insert responsive Pixabay images galleries similar to Flickr, Google Images and 500px. 7 Version: 1. 87 Version: 1.9 8 8 Author: Simon Steinberger 9 9 Author URI: https://pixabay.com/users/Simon/ -
pixabay-images-gallery/trunk/readme.txt
r1521259 r1521377 4 4 Requires at least: 3.5 5 5 Tested up to: 4.4 6 Stable tag: 1. 86 Stable tag: 1.9 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 89 89 * Registering an own Pixabay API key is now a requirement; due to abuse of the hard coded key in previous versions. 90 90 91 = 1.9 = 92 * Minor fix for older PHP versions. 93 91 94 == Upgrade Notice == 92 95 -
pixabay-images-gallery/trunk/settings.php
r1521259 r1521377 133 133 <h2><?= _e('Pixabay Images Gallery', 'pxigw'); ?></h2> 134 134 <?php 135 if (!get_option('pxigw_options')['key']) { 135 $o = get_option('pxigw_options'); 136 if (!$o['key']) { 136 137 echo '<div class="notice notice-info"><p>'; 137 138 echo _e("To enable this plugin, you must obtain an API key from Pixabay and enter it in the settings below. After <a href='https://pixabay.com/accounts/register/' target='_blank'>signing up for free on Pixbay</a>, you can <a href='https://pixabay.com/api/docs/' target='_blank'>find your API key here</a>.", 'pxigw');
Note: See TracChangeset
for help on using the changeset viewer.