From 648dc735a0e50687adb338dca3dec152686462ac Mon Sep 17 00:00:00 2001 From: Duskell Date: Sun, 1 Feb 2026 14:22:03 +0100 Subject: [PATCH] forgot to call function --- includes/class-partnerexpo-core.php | 3 ++- partnerexpo-core.php | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/includes/class-partnerexpo-core.php b/includes/class-partnerexpo-core.php index 693e6f6..6e2c0bc 100644 --- a/includes/class-partnerexpo-core.php +++ b/includes/class-partnerexpo-core.php @@ -171,9 +171,10 @@ class Partnerexpo_Core { $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); $this->loader->add_action( 'rest_api_init', $plugin_public, 'register_endpoint' ); $this->loader->add_action( 'init', $this, 'define_cpts' ); + $this->loader->add_action( 'init', $this, 'define_taxonomies' ); } - function define_taxonomy() { + function define_taxonomies() { $labels = [ 'name' => 'pexpo_tags', 'singular_name' => __( 'Partner címke', 'partnerexpo-core' ), diff --git a/partnerexpo-core.php b/partnerexpo-core.php index cd5406c..28a9706 100644 --- a/partnerexpo-core.php +++ b/partnerexpo-core.php @@ -9,7 +9,7 @@ * Plugin Name: PartnerExpo Core * Plugin URI: https://partnerexpo.eu * Description: A PartnerEXPO oldal belső pluginja - * Version: 1.0.6 + * Version: 1.0.7 * Author: Juhász Levente * Author URI: https://github.com/Duskell/ * License: GPL-2.0+ @@ -23,7 +23,7 @@ if ( ! defined( 'WPINC' ) ) { die; } -define( 'PARTNEREXPO_CORE_VERSION', '1.0.6' ); +define( 'PARTNEREXPO_CORE_VERSION', '1.0.7' ); function activate_partnerexpo_core() { require_once plugin_dir_path( __FILE__ ) . 'includes/class-partnerexpo-core-activator.php';