9 lines
230 B
PHP
9 lines
230 B
PHP
<?php
|
|
|
|
function conditional_terms_config_check()
|
|
{
|
|
global $conditional_terms_field, $conditional_terms_value;
|
|
|
|
return trim($conditional_terms_value) !== '' && get_resource_type_field($conditional_terms_field) !== false;
|
|
}
|