diff --git a/composer.json b/composer.json index 28e1074..d2b6015 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,17 @@ { "name": "freibergergarcia/custom-post-types-taxonomies", - "version": "0.1.0-alpha", + "version": "0.2.0", "description": "Custom Post Types and Taxonomies", "license": "GPL-2.0-only", "type": "wordpress-plugin", + "keywords": [ + "wordpress", + "plugin", + "post types", + "post type", + "taxonomy", + "taxonomies" + ], "authors": [ { "name": "Bruno", diff --git a/custom-post-types-taxonomies.php b/custom-post-types-taxonomies.php index 0e06856..ba7c929 100644 --- a/custom-post-types-taxonomies.php +++ b/custom-post-types-taxonomies.php @@ -9,7 +9,7 @@ * * @wordpress-plugin * Plugin Name: Custom PTT - * Version: 0.1.0-alpha + * Version: 0.2.0 * Plugin URI: https://www.github.com/freibergergarcia/custom-post-types-taxonomies * Description: Enhance your WordPress site with related post types and taxonomies functionality provided by the Custom PTT plugin. * Author: Bruno Freiberger Garcia diff --git a/includes/Taxonomy/Taxonomy.php b/includes/Taxonomy/Taxonomy.php index 6f38587..d87fdae 100644 --- a/includes/Taxonomy/Taxonomy.php +++ b/includes/Taxonomy/Taxonomy.php @@ -23,7 +23,7 @@ class Taxonomy implements Registerable { * Register the taxonomy. * * @return void - * @since 0.1.0-alpha + * @since 0.1.0-alpha */ public function register(): void { add_action( 'init', array( $this, 'register_taxonomy_on_init' ) ); diff --git a/package.json b/package.json index 132176e..12f4374 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,14 @@ "email": "freibergergarcia@gmail.com", "url": "https://github.com/freibergergarcia" }, + "keywords": [ + "wordpress", + "plugin", + "post types", + "post type", + "taxonomy", + "taxonomies" + ], "devDependencies": { "@tailwindcss/forms": "^0.5.7", "autoprefixer": "^10.4.7",