Plugin Directory

Changeset 2276315


Ignore:
Timestamp:
04/05/2020 10:36:03 AM (6 years ago)
Author:
pchere
Message:

Changelog in readme.txt

Location:
display-wordpress-version
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • display-wordpress-version/trunk/readme.txt

    r981996 r2276315  
    11=== Display WordPress Version ===
    22Contributors: 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
     3Tags: wordpress, version
     4Stable tag: 1.4
     5Plugin URI: https://www.quickonlinetips.com/archives/display-wordpress-version-plugin/
     6Requires at least: 4.0
     7Tested up to: 5.4
     8Requires PHP: 5.4
     9License: GPLv2 or later
     10License URI: http://www.gnu.org/licenses/gpl-2.0.html
    811
    912== Description ==
     
    2528
    2629== 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> =
     31It 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.
    2932
    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> =
     34https://www.quickonlinetips.com/archives/display-wordpress-version-plugin/
    3235
    3336== Changelog ==
    3437
     38= 1.4 =
     39* Added class to the text which can be speciifically tweaked as required.
     40
    3541= 1.3 =
    36 
    3742* Now code can be added anywhere in theme template.
    3843* PHP code needs to be manually added to template.
     
    4045
    4146= 1.0 =
    42 
    4347* Initial release.
  • display-wordpress-version/trunk/wpversion.php

    r982025 r2276315  
    33Plugin Name: Display WordPress Version
    44Author: Quick Online Tips
    5 Author URI: http://www.quickonlinetips.com/
    6 Version: 1.3
     5Author URI: https://www.quickonlinetips.com
     6Version: 1.4
    77Description: 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/
     8Plugin URI: https://www.quickonlinetips.com/archives/display-wordpress-version-plugin/
    109
    1110Instructions: Add the following code
     
    1413
    1514*/
    16 
    17 function quickversion() {
    18         {
    19   echo "Powered by <a href='http://wordpress.org'>WordPress</a> ";
    20   echo bloginfo('version');
    21  }
     15function quickversion()
     16{
     17    echo "Powered by <a class='display-version' href='https://wordpress.org'>WordPress</a> ";
     18    echo bloginfo('version');
    2219}
    23 
    2420?>
Note: See TracChangeset for help on using the changeset viewer.