Changeset 825215
- Timestamp:
- 12/19/2013 02:34:28 AM (12 years ago)
- Location:
- laravel-paste-embed/trunk
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
README.md (modified) (2 diffs)
-
laravel-paste-embed.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
laravel-paste-embed/trunk
-
Property
svn:ignore
set to
deploy.sh
README.md
.git
.gitignore
-
Property
svn:ignore
set to
-
laravel-paste-embed/trunk/README.md
r825182 r825215 6 6 ### Installation 7 7 8 This plugin is not yet in the Wordpress Plugin Directory. Manually add it to your plugins folder and then activate it from within Wordpress. 8 There are two ways to install this plugin: 9 10 1. Search for 'Laravel Paste Embed' in the "Plugins > Add New" menu & go from there. 11 2. Download a zip version of this project and install via zip upload or directly install it to your plugins folder via FTP. 9 12 10 13 ### Usage … … 13 16 http://paste.laravel.com/cJ9 14 17 3. In your page or post add this shortcode, with the relevant part of the URL in question: 15 [lpe paste='cJ9']18 ```[lpe paste='cJ9']``` 16 19 17 20 ### Thanks 18 I have shamelessly stolen the styling from the paste.laravel.com site itself. 21 I have shamelessly stolen the styling from the paste.laravel.com site itself. Many thanks to [Dayle Rees](https://twitter.com/daylerees). 19 22 20 23 21 24 ### Website: 22 http://rydurham.com/plugins/laravel-paste-embed/ 25 [http://www.ryandurham.com/2013/04/06/laravel-paste-embed/](http://www.ryandurham.com/2013/04/06/laravel-paste-embed/) -
laravel-paste-embed/trunk/laravel-paste-embed.php
r825182 r825215 2 2 /** 3 3 * @package LaravePasteEmbed 4 * @version 1.2 4 * @version 1.2.1 5 5 */ 6 6 /* … … 9 9 Description: A plugin to embed pages & snippets from paste.laravel.com into a wordpress site. 10 10 Author: Ryan Durham 11 Version: 1.2 11 Version: 1.2.1 12 12 Author URI: http://rydurham.com 13 13 License: GPL2 … … 100 100 prefix_add_lpe_stylesheet(); 101 101 prefix_add_lpe_script(); 102 add_action( 'wp_footer', 'lpe_header' );103 102 } 104 103 … … 120 119 121 120 /** 122 * Add Prettify action .121 * Add Prettify action to the header. 123 122 */ 124 123 function lpe_header() { … … 129 128 <?php 130 129 } 130 add_action( 'wp_footer', 'lpe_header' ); -
laravel-paste-embed/trunk/readme.txt
r825182 r825215 1 1 === Laravel-Paste-Embed === 2 2 Contributors: rydurham 3 Donate link: rydurham.com3 Donate link: http://www.ryandurham.com/category/code/ 4 4 Tags: Laravel Paste 5 5 Requires at least: 3.3 6 Tested up to: 3. 5.17 Stable tag: Stable6 Tested up to: 3.6 7 Stable tag: 1.2.1 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 == Description == 14 14 15 A Wordpress plugin to embed code from paste.laravel.com. Still in beta - I have not been able to do much testing.15 A Wordpress plugin to embed code from paste.laravel.com. 16 16 17 17 == Installation ==
Note: See TracChangeset
for help on using the changeset viewer.