Skip to content
This repository has been archived by the owner on Feb 27, 2022. It is now read-only.

Fixed action, get_current_screen wasn't loading. #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: rilwis
Donate link: http://www.deluxeblogtips.com/donate
Tags: custom-fields, custom-field, meta, taxonomy, term
Requires at least: 3.3
Tested up to: 3.5.2
Tested up to: 4.6.1
Stable tag: 1.2

Taxonomy Meta plugin helps you easily add meta values to terms, mimic custom post fields
Expand Down
2 changes: 1 addition & 1 deletion taxonomy-meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function __construct( $meta ) {
add_action( 'admin_init', array( $this, 'add' ), 100 );
add_action( 'edit_term', array( $this, 'save' ), 10, 2 );
add_action( 'delete_term', array( $this, 'delete' ), 10, 2 );
add_action( 'load-edit-tags.php', array( $this, 'load_edit_page' ) );
add_action( 'load-term.php', array( $this, 'load_edit_page' ) );
}

/**
Expand Down