Plugin Directory

Changeset 2031250


Ignore:
Timestamp:
02/15/2019 10:15:57 AM (7 years ago)
Author:
softmodeling
Message:

Plugin version tested with WP 5.0.3

Location:
comment-admin-notifier/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • comment-admin-notifier/trunk/README.txt

    r1794666 r2031250  
    1 === Plugin Name ===
     1=== Comment Admin Notifier ===
    22Contributors: softmodeling
    33Tags: comments, email, admin, alert, mail, comment, notification
    44Requires at least: 4.3
    5 Tested up to: 4.9.1
     5Tested up to: 5.0.3
     6Requires PHP: 5.6
    67Stable tag: trunk
    78License: GPLv2 or later
     
    2223== Installation ==
    2324
    24 1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
    25 1. Activate the plugin through the 'Plugins' menu in WordPress
    26 1. Place `<?php do_action('plugin_name_hook'); ?>` in your templates
    27 
    28 OR you can just install it with WordPress by going to Plugins &rarr; Add New &rarr; and type this plugin's name
     25Install this plugin from within your WordPress site by going to Plugins &rarr; Add New &rarr; and type this plugin's name
    2926
    3027== Changelog ==
    3128
     29= 1.1 =
     30* Plugin compatibility tested with WordPress 5.0
     31
    3232= 1.0 =
    3333* Initial release
     34
     35
     36== Upgrade Notice ==
     37
     38= 1.1 =
     39* Tested plugin compatibility with WordPress 5.0
  • comment-admin-notifier/trunk/comment-admin-notifier.php

    r1794666 r2031250  
    1313 * Version:           1.0.0
    1414 * Author:            Jordi Cabot
    15  * Author URI:        http://jordicabot.com/
     15 * Author URI:        https://seriouswp.com/
    1616 * License:           GPL-2.0+
    1717 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
     
    3232    die;
    3333}
     34
     35/**
     36 * Currently plugin version.
     37 * Start at version 1.0.0 and use SemVer - https://semver.org
     38 * Rename this for your plugin and update it as you release new versions.
     39 */
     40define( 'COMMENT_ADMIN_NOTIFIER', '1.0.0' );
     41
    3442
    3543/**
  • comment-admin-notifier/trunk/includes/class-comment-admin-notifier-i18n.php

    r1794666 r2031250  
    2121
    2222        load_plugin_textdomain(
    23             'plugin-name',
     23            'serious-slack',
    2424            false,
    2525            dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
Note: See TracChangeset for help on using the changeset viewer.