MO::is_entry_good_for_exportpublicWP 1.0

Method of the class: MO{}

No Hooks.

Returns

true|false.

Usage

$MO = new MO();
$MO->is_entry_good_for_export( $entry );
$entry(Translation_Entry) (required)
.

MO::is_entry_good_for_export() code WP 6.9.1

public function is_entry_good_for_export( $entry ) {
	if ( empty( $entry->translations ) ) {
		return false;
	}

	if ( ! array_filter( $entry->translations ) ) {
		return false;
	}

	return true;
}