Changeset 1076367
- Timestamp:
- 01/27/2015 01:17:34 AM (11 years ago)
- Location:
- author-recommended-posts/trunk
- Files:
-
- 3 edited
-
index.php (modified) (2 diffs)
-
lib/constants.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
author-recommended-posts/trunk/index.php
r694841 r1076367 4 4 Plugin URI: http:// 5 5 Description: A simple WordPress plugin that allows the author to pick recommended reading of posts, on a per post basis 6 Version: 1.0. 26 Version: 1.0.3 7 7 Author: digital-telepathy 8 8 Author URI: http://www.dtelepathy.com … … 31 31 static $html_newline = "\n"; 32 32 var $namespace = "author_recommended_posts"; 33 var $version = "1.0. 2";33 var $version = "1.0.3"; 34 34 35 35 // Default plugin options -
author-recommended-posts/trunk/lib/constants.php
r694841 r1076367 6 6 * 7 7 * @author digital-telepathy 8 * @version 1.0.09 * @since 1.0.010 8 */ 11 9 12 10 // The current version of this plugin 13 if( !defined( 'AUTHOR_RECOMMENDED_POSTS_VERSION' ) ) define( 'AUTHOR_RECOMMENDED_POSTS_VERSION', '1.0. 2' );11 if( !defined( 'AUTHOR_RECOMMENDED_POSTS_VERSION' ) ) define( 'AUTHOR_RECOMMENDED_POSTS_VERSION', '1.0.3' ); 14 12 15 13 // The directory the plugin resides in … … 17 15 18 16 // The URL path of this plugin 19 if( !defined( 'AUTHOR_RECOMMENDED_POSTS_URLPATH' ) ) define( 'AUTHOR_RECOMMENDED_POSTS_URLPATH', WP_PLUGIN_URL . "/" . plugin_basename( AUTHOR_RECOMMENDED_POSTS_DIRNAME ) ); 17 if ( function_exists('plugins_url') ) { 18 $wp_plugins_url = plugins_url(); 19 } else { 20 $wp_plugins_url = WP_PLUGIN_URL; 21 } 22 if( !defined( 'AUTHOR_RECOMMENDED_POSTS_URLPATH' ) ) define( 'AUTHOR_RECOMMENDED_POSTS_URLPATH', $wp_plugins_url . "/" . plugin_basename( AUTHOR_RECOMMENDED_POSTS_DIRNAME ) ); 20 23 21 24 if( !defined( 'IS_AJAX_REQUEST' ) ) define( 'IS_AJAX_REQUEST', ( !empty( $_SERVER['HTTP_X_REQUESTED_WITH'] ) && strtolower( $_SERVER['HTTP_X_REQUESTED_WITH'] ) == 'xmlhttprequest' ) ); -
author-recommended-posts/trunk/readme.txt
r694841 r1076367 4 4 Tags: related posts, author posts, recommended, reading, author recommended posts, recommended author posts, recommended posts, reading, specific posts, plugin, list of posts, recommended articles 5 5 Requires at least: 3.3 6 Tested up to: 3.56 Tested up to: 4.1 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 57 57 58 58 == Changelog == 59 = 1.0.3 = 60 * Changed plugin URL constant to properly respect https scheme 61 59 62 = 1.0.2 = 60 63 * Added 2 new actions author_recommended_posts_before_related and author_recommended_posts_after_related that can be hooked into for outputting custom content before or after each related entry … … 68 71 69 72 == Upgrade Notice == 73 = 1.0.3 = 74 Added https fix 75 70 76 = 1.0.2 = 71 77 Minor additions
Note: See TracChangeset
for help on using the changeset viewer.