wp_check_term_meta_support_prefilter

The timeline below displays how wordpress function wp_check_term_meta_support_prefilter has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.0

/**
 * Aborts calls to term meta if it is not supported.
 *
 * @since 5.0.0
 *
 * @param mixed $check Skip-value for whether to proceed term meta function execution.
 * @return mixed Original value of $check, or false if term meta is not supported.
 */
function wp_check_term_meta_support_prefilter($check)
{
    if (get_option('db_version') < 34370) {
        return false;
    }
    return $check;
}