From 85eabd018a76d923ef88ed15f06321e832fa5b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Mon, 20 Nov 2023 14:14:25 +0100 Subject: [PATCH] add comment --- includes/class-transformer-base.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/class-transformer-base.php b/includes/class-transformer-base.php index 348007e..92d12b9 100644 --- a/includes/class-transformer-base.php +++ b/includes/class-transformer-base.php @@ -40,6 +40,7 @@ abstract class Transformer_Base { * Get the supported WP post_types that the transformer can use as an input. * * By default all post types are supported. + * You may very likely wish to override this function. * * @since version_number_transformer_management_placeholder * @return string[] An array containing all the supported post types. @@ -97,4 +98,5 @@ abstract class Transformer_Base { * @return string display name */ abstract public function get_label(); + } \ No newline at end of file