Changeset 1423280
- Timestamp:
- 05/24/2016 02:55:20 PM (10 years ago)
- Location:
- simple-instagram-embed
- Files:
-
- 2 edited
- 3 copied
-
tags/2.1.1 (copied) (copied from simple-instagram-embed/trunk)
-
tags/2.1.1/readme.txt (copied) (copied from simple-instagram-embed/trunk/readme.txt) (4 diffs)
-
tags/2.1.1/simple-instagram-embed.php (copied) (copied from simple-instagram-embed/trunk/simple-instagram-embed.php) (4 diffs)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/simple-instagram-embed.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-instagram-embed/tags/2.1.1/readme.txt
r1365795 r1423280 3 3 Tags: social, plugin, instagram, embed, instagram embed, image, video, oembed 4 4 Requires at least: 3.0.0 5 Tested up to: 4. 4.26 Stable tag: 2.1. 05 Tested up to: 4.5.2 6 Stable tag: 2.1.1 7 7 8 Paste any link to a instagram picture or video in your post and the plugin replace your instagram link with the Instagram Embed directly in your posts just like wordpress replace your youtube links to youtube embeds.8 Paste any link to a Instagram picture or video in your post and the plugin replace your Instagram link with the Instagram Embed directly in your posts just like Wordpress replace your Youtube links to Youtube embeds. 9 9 10 10 == Description == 11 11 12 Paste any link to a instagram picture or video in your post and the plugin replace your instagram link with the [Instagram Embed](http://blog.instagram.com/post/55095847329/introducing-instagram-web-embeds) directly in your posts just like wordpress replace your youtube links to youtube embeds.12 Paste any link to a Instagram picture or video in your post and the plugin replace your Instagram link with the [Instagram Embed](http://blog.instagram.com/post/55095847329/introducing-instagram-web-embeds) directly in your posts just like Wordpress replace your Youtube links to Youtube embeds. 13 13 14 Settings page ava liable where you can specify the maximum width the embed is allowed to be, and hide the caption if you would like that.14 Settings page available where you can specify the maximum width the embed is allowed to be, and hide the caption if you would like that. 15 15 If you site is responsive, the embed will resize down nicely on tablet and mobile devices. 16 16 … … 26 26 == Frequently Asked Questions == 27 27 28 = Why use this plugin when Wordpress now have built in support for Instagram embed = 29 It is correct that Wordpress now have built in support for the Instagram embed. What you don't have is control over the site of the embed and if the image/video caption should be included or not. You can control both of these aspects with this plugin in the settings page. 30 28 31 = Image/video is not showing = 29 32 You can only embed images/videos from public profiles. Images from private profiles will not display. So make sure the image you are trying to embed belongs to a user with a public profile. … … 33 36 34 37 = I want the link in the embed to open in a new tab/window = 35 Yeah, so would I. Sadly, this is a behavior I can not control and it is up to Instagram to change this. Imo you should always open external links in new tabs, so I don't understand why Instagram have choose nnot to with there embed.38 Yeah, so would I. Sadly, this is a behavior I can not control and it is up to Instagram to change this. Imo you should always open external links in new tabs, so I don't understand why Instagram have choose not to with there embed. 36 39 37 40 == Screenshots == … … 40 43 41 44 == Changelog == 45 46 = 2.1.1 = 47 * Minor code formatting fixes 48 * Minor changes to readme 49 * Tested on Wordpress 4.5.2 42 50 43 51 = 2.1.0 = -
simple-instagram-embed/tags/2.1.1/simple-instagram-embed.php
r1365795 r1423280 3 3 Plugin Name: Simple Instagram Embed 4 4 Plugin URI: http://darkwhispering.com/wp-plugins/simple-instagram-embed 5 Description: Paste any link to a instagram picture or video in your post and the plugin replace your instagram link with the Instagram Embed directly in your posts just like wordpress replace your youtube links to youtube embeds.5 Description: Paste any link to a Instagram picture or video in your post and the plugin replace your Instagram link with the Instagram Embed directly in your posts just like Wordpress replace your Youtube links to Youtube embeds. 6 6 Author: Mattias Hedman 7 7 Author URI: http://www.darkwhispering.com 8 Version: 2.1. 08 Version: 2.1.1 9 9 */ 10 10 … … 76 76 /** 77 77 * Has to exists, but we don't use it... 78 *79 * @return [type] [description]80 78 */ 81 79 function settings_section_callback() … … 133 131 { 134 132 // Check so user has correct permissions 135 if ( ! current_user_can( 'manage_options' ) ) 136 { 133 if ( ! current_user_can( 'manage_options' ) ) { 137 134 wp_die( __( 'You do not have sufficient permissions to access this page.', 'simple_instagram_embed' ) ); 138 135 } … … 198 195 curl_close( $curl ); 199 196 200 if ( $http_status === 200 ) 201 { 197 if ( $http_status === 200 ) { 202 198 return $result->html; 203 199 } -
simple-instagram-embed/trunk/readme.txt
r1365795 r1423280 3 3 Tags: social, plugin, instagram, embed, instagram embed, image, video, oembed 4 4 Requires at least: 3.0.0 5 Tested up to: 4. 4.26 Stable tag: 2.1. 05 Tested up to: 4.5.2 6 Stable tag: 2.1.1 7 7 8 Paste any link to a instagram picture or video in your post and the plugin replace your instagram link with the Instagram Embed directly in your posts just like wordpress replace your youtube links to youtube embeds.8 Paste any link to a Instagram picture or video in your post and the plugin replace your Instagram link with the Instagram Embed directly in your posts just like Wordpress replace your Youtube links to Youtube embeds. 9 9 10 10 == Description == 11 11 12 Paste any link to a instagram picture or video in your post and the plugin replace your instagram link with the [Instagram Embed](http://blog.instagram.com/post/55095847329/introducing-instagram-web-embeds) directly in your posts just like wordpress replace your youtube links to youtube embeds.12 Paste any link to a Instagram picture or video in your post and the plugin replace your Instagram link with the [Instagram Embed](http://blog.instagram.com/post/55095847329/introducing-instagram-web-embeds) directly in your posts just like Wordpress replace your Youtube links to Youtube embeds. 13 13 14 Settings page ava liable where you can specify the maximum width the embed is allowed to be, and hide the caption if you would like that.14 Settings page available where you can specify the maximum width the embed is allowed to be, and hide the caption if you would like that. 15 15 If you site is responsive, the embed will resize down nicely on tablet and mobile devices. 16 16 … … 26 26 == Frequently Asked Questions == 27 27 28 = Why use this plugin when Wordpress now have built in support for Instagram embed = 29 It is correct that Wordpress now have built in support for the Instagram embed. What you don't have is control over the site of the embed and if the image/video caption should be included or not. You can control both of these aspects with this plugin in the settings page. 30 28 31 = Image/video is not showing = 29 32 You can only embed images/videos from public profiles. Images from private profiles will not display. So make sure the image you are trying to embed belongs to a user with a public profile. … … 33 36 34 37 = I want the link in the embed to open in a new tab/window = 35 Yeah, so would I. Sadly, this is a behavior I can not control and it is up to Instagram to change this. Imo you should always open external links in new tabs, so I don't understand why Instagram have choose nnot to with there embed.38 Yeah, so would I. Sadly, this is a behavior I can not control and it is up to Instagram to change this. Imo you should always open external links in new tabs, so I don't understand why Instagram have choose not to with there embed. 36 39 37 40 == Screenshots == … … 40 43 41 44 == Changelog == 45 46 = 2.1.1 = 47 * Minor code formatting fixes 48 * Minor changes to readme 49 * Tested on Wordpress 4.5.2 42 50 43 51 = 2.1.0 = -
simple-instagram-embed/trunk/simple-instagram-embed.php
r1365795 r1423280 3 3 Plugin Name: Simple Instagram Embed 4 4 Plugin URI: http://darkwhispering.com/wp-plugins/simple-instagram-embed 5 Description: Paste any link to a instagram picture or video in your post and the plugin replace your instagram link with the Instagram Embed directly in your posts just like wordpress replace your youtube links to youtube embeds.5 Description: Paste any link to a Instagram picture or video in your post and the plugin replace your Instagram link with the Instagram Embed directly in your posts just like Wordpress replace your Youtube links to Youtube embeds. 6 6 Author: Mattias Hedman 7 7 Author URI: http://www.darkwhispering.com 8 Version: 2.1. 08 Version: 2.1.1 9 9 */ 10 10 … … 76 76 /** 77 77 * Has to exists, but we don't use it... 78 *79 * @return [type] [description]80 78 */ 81 79 function settings_section_callback() … … 133 131 { 134 132 // Check so user has correct permissions 135 if ( ! current_user_can( 'manage_options' ) ) 136 { 133 if ( ! current_user_can( 'manage_options' ) ) { 137 134 wp_die( __( 'You do not have sufficient permissions to access this page.', 'simple_instagram_embed' ) ); 138 135 } … … 198 195 curl_close( $curl ); 199 196 200 if ( $http_status === 200 ) 201 { 197 if ( $http_status === 200 ) { 202 198 return $result->html; 203 199 }
Note: See TracChangeset
for help on using the changeset viewer.