Plugin Directory

Changeset 1804942


Ignore:
Timestamp:
01/18/2018 06:53:41 AM (8 years ago)
Author:
JorgeAmVF
Message:

code formatting and version alignment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nowon/trunk/nowon.php

    r1804890 r1804942  
    33* Plugin Name: autometa's NOWON
    44* Description: It generates current time and date in pages, posts, portfolios or products simply via: [nowon] and [nowadays].
    5 * Version: 2.1
     5* Version: 2.2
    66* Author: JorgeAmVF
    77* Author URI: https://profiles.wordpress.org/jorgeamvf/
     
    2929function autometa_current_time() {
    3030    $am_nowon = current_time( 'H:i:s' );
    31         return $am_nowon;
     31    return $am_nowon;
    3232}
    3333add_shortcode( "nowon", "autometa_current_time" );
     
    3636function autometa_current_date() {
    3737    $am_nowadays = current_time( 'd M Y' );
    38         return $am_nowadays;
     38    return $am_nowadays;
    3939}
    4040add_shortcode( "nowadays", "autometa_current_date" );
Note: See TracChangeset for help on using the changeset viewer.