added generic get_content from wp_object to class-event
Some checks failed
PHP Code Checker / PHP Code Checker (pull_request) Failing after 35s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Failing after 57s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Failing after 55s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Failing after 55s

This commit is contained in:
ruru4143 2024-09-29 15:55:32 +02:00
parent b4d3a7efa0
commit d3f16706f8

View file

@ -353,4 +353,7 @@ abstract class Event extends Post {
}
protected function get_content() {
return $this->wp_object->post_content;
}
}