Skip to content

Commit

Permalink
Bump to version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vladolaru committed Jan 31, 2022
1 parent e639dd3 commit b1401e5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 20 deletions.
31 changes: 17 additions & 14 deletions category-icon.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
<?php
/*
Plugin Name: Category Icon
Plugin URI: http://pixelgrade.com
Description: Easily attach an icon and/or an image to a category, tag or any other taxonomy term.
Version: 0.8.0
Author: PixelGrade
Author URI: http://pixelgrade.com
Author Email: [email protected]
Text Domain: category-icon
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Domain Path: /lang
*/
/**
* Plugin Name: Category Icon
* Plugin URI: http://pixelgrade.com
* Description: Easily attach an icon and/or an image to a category, tag or any other taxonomy term.
* Version: 1.0.0
* Author: Pixelgrade
* Author URI: http://pixelgrade.com
* Author Email: [email protected]
* Text Domain: category-icon
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /lang
* Requires at least: 4.9.19
* Tested up to: 5.9.0
* Requires PHP: 5.6.40
*/

// If this file is called directly, abort.
if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -27,7 +30,7 @@ class PixTaxonomyIconsPlugin {
protected $plugin_basepath = null;
protected $plugin_baseurl = null;
protected $plugin_screen_hook_suffix = null;
protected $version = '0.8.0';
protected $version = '1.0.0';
protected $plugin_slug = 'category-icon';
protected $plugin_key = 'category-icon';

Expand Down
16 changes: 10 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
=== Category Icon ===
Contributors: pixelgrade, vlad.olaru, babbardel
Tags: category, taxonomy, term, icon, image
Requires at least: 4.9.9
Requires at least: 4.9.19
Tested up to: 5.9.0
Stable tag: 0.8.0
Requires PHP: 5.6.40
Stable tag: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -13,19 +14,22 @@ A WordPress plugin to easily attach an icon to a category, tag or any other taxo

** Now supports a category, tag or any other taxonomy image field, also.

Please note that this plugin will not automatically output the icon or the image on the frontend of our site. It is up to you to query and output in your theme.
Please note that this plugin will not automatically output the icon or the image on the frontend of our site.

It is up to you to query and output in your theme using the provided getter functions: `get_term_icon_id()`, `get_term_icon_url()`, `get_term_image_id()`, `get_term_image_url()`.

== Installation ==

1. Install Category Icon either via the WordPress.org plugin directory, or by uploading the files to your `/wp-content/plugins/` directory
2. After activating Category Icon go and edit any category or term to see the upload field.
3. Now You can add or edit category icons
3. Now you can add or edit category, tags or any other taxonomy terms icons.

== Changelog ==

= 0.8.0 =
= 1.0.0 =
* Ensure compatibility with WordPress 5.9
* Add getters for term icon and image.
* Add getter functions for term icon and image.
* Update build process.
* Clarify description and instructions about what this plugin does and doesn't do.

= 0.7.1 =
Expand Down

0 comments on commit b1401e5

Please sign in to comment.