Plugin Directory

Changeset 1074626


Ignore:
Timestamp:
01/24/2015 03:53:40 AM (11 years ago)
Author:
pankajanupam
Message:

update to 2.0

Location:
change-howdy
Files:
4 added
2 edited
2 copied

Legend:

Unmodified
Added
Removed
  • change-howdy/trunk/change-howdy.php

    r603770 r1074626  
    22/*
    33Plugin Name: Change Howdy
    4 Plugin URI: http://pankajanupam.in/wordpress-plugins/subdomains/
    5 Description: Change howdy text to welcome
    6 Version: 1.1
    7 Author: PANKAJ ANUPAM
    8 Author URI: http://pankajanupam.in
     4Plugin URI: http://pankajanupam.com/wordpress-plugins/change-howdy/
     5Description: Change howdy text to welcome or any other custom text
     6Version: 2.0
     7Author: BigBrother
     8Author URI: http://pankajanupam.com
    99
    1010* LICENSE
     
    2828<?php
    2929add_filter('gettext', 'change_howdy', 10, 3);
     30
    3031function change_howdy($translated, $text, $domain) {
    3132    if (!is_admin() || 'default' != $domain)
    3233        return $translated;
     34
    3335    if (false !== strpos($translated, 'Howdy'))
    3436        return str_replace('Howdy', 'Welcome', $translated);
     37   
    3538    return $translated;
    3639}
  • change-howdy/trunk/readme.txt

    r603770 r1074626  
    33Tags: change howdy, admin bar
    44Requires at least: 2.8
    5 Tested up to: 3.4.2
     5Tested up to: 4.1
    66
    7 Change Howdy to welcome
     7Change Howdy to welcome or any other text
    88
    99== Description ==
    10 Change Howdy to welcome
     10Change Howdy to welcome or any other text
    1111
    1212== Installation ==
     
    4141
    4242== Changelog ==
     43=2.0=
     44add compatibility tag
     45
     46=1.2=
     47add compatibility tag
     48
    4349=1.1=
    4450add compatibility tag
Note: See TracChangeset for help on using the changeset viewer.