Changeset 2276315
- Timestamp:
- 04/05/2020 10:36:03 AM (6 years ago)
- Location:
- display-wordpress-version
- Files:
-
- 4 added
- 2 edited
-
tags/1.4 (added)
-
tags/1.4/readme.txt (added)
-
tags/1.4/screenshot-1.png (added)
-
tags/1.4/wpversion.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wpversion.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
display-wordpress-version/trunk/readme.txt
r981996 r2276315 1 1 === Display WordPress Version === 2 2 Contributors: pchere 3 Tags: wordpress, version, blog, powered 4 Stable tag: 1.3 5 Plugin URI: http://www.quickonlinetips.com/archives/display-wordpress-version-plugin/ 6 Requires at least: 1.5 7 Tested up to: 4.0 3 Tags: wordpress, version 4 Stable tag: 1.4 5 Plugin URI: https://www.quickonlinetips.com/archives/display-wordpress-version-plugin/ 6 Requires at least: 4.0 7 Tested up to: 5.4 8 Requires PHP: 5.4 9 License: GPLv2 or later 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 11 9 12 == Description == … … 25 28 26 29 == Frequently Asked Questions == 27 <b>Q: Why should I display my blog wordpress version?</b><br /> 28 It is good practice to update to the latest version of WordPress. This is essential for new features, bug fixes and more importantly, for your blog security. Let the world know your blog is powered by the latest version of WordPress. 30 = <b>Q: Why should I display my blog wordpress version?</b> = 31 It is good practice to update to the latest version of WordPress. This is essential for new features, bug fixes and more importantly, for your blog security. Let the world know your blog is powered by the latest version of WordPress. 29 32 30 <b>Q: Where can I send feedback about this plugin?</b><br /> 31 http ://www.quickonlinetips.com/archives/display-wordpress-version-plugin/33 = <b>Q: Where can I send feedback about this plugin?</b> = 34 https://www.quickonlinetips.com/archives/display-wordpress-version-plugin/ 32 35 33 36 == Changelog == 34 37 38 = 1.4 = 39 * Added class to the text which can be speciifically tweaked as required. 40 35 41 = 1.3 = 36 37 42 * Now code can be added anywhere in theme template. 38 43 * PHP code needs to be manually added to template. … … 40 45 41 46 = 1.0 = 42 43 47 * Initial release. -
display-wordpress-version/trunk/wpversion.php
r982025 r2276315 3 3 Plugin Name: Display WordPress Version 4 4 Author: Quick Online Tips 5 Author URI: http ://www.quickonlinetips.com/6 Version: 1. 35 Author URI: https://www.quickonlinetips.com 6 Version: 1.4 7 7 Description: Displays a Powered by WordPress version (X.Y.Z) notice anywhere in your blog template by manually adding php code to template. 8 9 Plugin URI: http://www.quickonlinetips.com/archives/display-wordpress-version-plugin/ 8 Plugin URI: https://www.quickonlinetips.com/archives/display-wordpress-version-plugin/ 10 9 11 10 Instructions: Add the following code … … 14 13 15 14 */ 16 17 function quickversion() { 18 { 19 echo "Powered by <a href='http://wordpress.org'>WordPress</a> "; 20 echo bloginfo('version'); 21 } 15 function quickversion() 16 { 17 echo "Powered by <a class='display-version' href='https://wordpress.org'>WordPress</a> "; 18 echo bloginfo('version'); 22 19 } 23 24 20 ?>
Note: See TracChangeset
for help on using the changeset viewer.